export interface CreateSearchFTSIndexesOptions { onIndexStart?: (table: string, indexName: string) => void; onIndexReady?: (table: string, indexName: string) => void; } export declare function createSearchFTSIndexes(options?: CreateSearchFTSIndexesOptions): Promise; export declare function verifySearchFTSIndexes(executeQuery: (cypher: string) => Promise): Promise;