export interface SearchResult { title: string; slug: string; section: string; snippet: string; } export interface DocResult { title: string; slug: string; description: string; body: string; related: string[]; } export interface PageInfo { title: string; slug: string; description: string; } export interface DocsBackend { search(query: string, limit: number): SearchResult[]; getDoc(slug: string): DocResult | null; listPages(): PageInfo[]; } export declare function createSqliteBackend(dbPath: string): Promise; //# sourceMappingURL=backend-sqlite.d.ts.map