import type { ModuleIr } from "./ir.js"; import type { ClientSpecializationFlags, RuntimeImport } from "./types.js"; export interface EmitResult { code: string; imports: RuntimeImport[]; } export declare function emitClient(ir: ModuleIr, options?: { dev?: boolean; filename?: string; specializations?: Partial | undefined; }): EmitResult; //# sourceMappingURL=emit-client.d.ts.map