/** * Sketch Wrapper - Safety normalization for raw Code Mode sketches * Wraps user-provided code with aesthetic defaults and safety measures */ export interface SketchWrapperConfig { code: string; normalize?: boolean; } export declare function wrapSketch(config: SketchWrapperConfig): string; export declare function validateSketchSafety(code: string): { safe: boolean; warnings: string[]; }; //# sourceMappingURL=sketch-wrapper.d.ts.map