import type { NormalizedContext } from "../types.js"; export interface TypeScriptGeneratorOptions { emitTypes?: boolean; emitClient?: boolean; emitValidators?: boolean; emitProgram?: boolean; contractYaml?: string; } export interface TypeScriptOutput { [filename: string]: string; } export declare function generateTypeScript(ctx: NormalizedContext, options?: TypeScriptGeneratorOptions): TypeScriptOutput; //# sourceMappingURL=typescript.d.ts.map