import type { InlayHintInfo } from '../inlayHints'; import type { ScriptCodegenOptions } from './index'; export type ScriptCodegenContext = ReturnType; export declare function createScriptCodegenContext(options: ScriptCodegenOptions): { generatedTypes: Set; localTypes: { generate: () => Generator; readonly PrettifyLocal: string; readonly WithDefaults: string; readonly WithSlots: string; readonly PropsChildren: string; readonly TypePropsToOption: string; readonly OmitIndexSignature: string; }; inlayHints: InlayHintInfo[]; };