import type { Client } from "@libsql/client"; export interface ReindexInboundArgs { vault: string; vaultPath: string; registryDb?: Client | undefined; } export interface ReindexInboundResult { vaultName: string; reindexed: boolean; error?: string; } export declare function reindexInboundVault(args: ReindexInboundArgs): Promise; //# sourceMappingURL=reindex-inbound.d.ts.map