/** * @a24z/markdown-search - High-performance full-text search for markdown documents */ export { SearchEngine } from './SearchEngine'; export { DocumentIndexer } from './DocumentIndexer'; export { SearchEngineFactory } from './SearchEngineFactory'; export type { SearchableDocument, DocumentType, DocumentMetadata, DocumentChunk, ChunkType, MetadataValue, SearchResult, SearchOptions, MatchInfo, MatchDetail, } from './types'; export type { SearchStorageAdapter, SerializedIndexData, IndexMetadata, SearchEngineAdapter, SearchEngineConfig, SearchEngineOptions, IndexingOptions, IndexingPhase, IndexingProgress, IndexResult, IndexError, SearchIndexStats, } from './adapters/types'; export type { MarkdownFileProvider, MarkdownFile, FindOptions, FileChange, Disposable, } from './MarkdownFileProvider'; export type { StorageAdapter, SearchEngineAdapterBase, SearchPlatformAdapter } from './adapters'; export { DEFAULT_FILE_EXCLUSIONS, mergeExclusions } from './adapters'; export { FlexSearchAdapter, NodeStorageAdapter, } from './adapters/implementations'; export * from './utils'; export declare const VERSION = "2.0.5"; //# sourceMappingURL=index.d.ts.map