import type { IndexerProvider } from "@voyant-travel/catalog-contracts/indexer/contract"; interface TypesenseGraphProviderContext { getConfig: (declarationId: string) => T | undefined; getSecret: (declarationId: string) => T | undefined; } /** First-party Typesense implementation selected by deployment.providers.search. */ export declare function createTypesenseGraphIndexerProvider(context: TypesenseGraphProviderContext): IndexerProvider; export {};