/** * Schema Handler * * Handles saving page schemas to the file system. */ export interface SchemaSaveResult { schemaPath: string; } /** * Handle page schema save: saves structured data as markdown to the screenshots folder */ export declare function handleSaveSchema(data: { schema: unknown; markdown: string; url: string; title: string; timestamp: number; }): Promise; //# sourceMappingURL=schema.d.ts.map