interface ExportOptions { includeMetadata?: boolean; includeToc?: boolean; format?: 'md' | 'html'; } interface Note { id: number; title: string; content: string; conversation_id: string; created_at: number; updated_at: number; tags?: string[]; } export declare class ExportService { /** * Exports a single note to markdown or HTML format */ exportNote(note: Note, options?: ExportOptions): string; /** * Exports multiple notes to a single markdown or HTML document */ exportNotes(notes: Note[], options?: ExportOptions): string; } export {};