import { InlayHintInfo } from '../inlayHints'; import type { ScriptCodegenOptions } from './index'; export interface HelperType { name: string; used?: boolean; generated?: boolean; code: string; } export type ScriptCodegenContext = ReturnType; export declare function createScriptCodegenContext(options: ScriptCodegenOptions): { generatedTemplate: boolean; generatedPropsType: boolean; scriptSetupGeneratedOffset: number | undefined; bypassDefineComponent: boolean; bindingNames: Set; localTypes: { generate: (names: string[]) => Generator; getUsedNames(): Set; readonly PrettifyLocal: string; readonly OmitKeepDiscriminatedUnion: string; readonly WithDefaults: string; readonly WithTemplateSlots: string; readonly PropsChildren: string; readonly TypePropsToOption: string; readonly OmitIndexSignature: string; }; inlayHints: InlayHintInfo[]; };