export declare type Content = { title?: string; chunks: Chunk[]; }; export declare type Chunk = { content: string; lang?: string; mimeType?: string; };