import type { Client } from "@libsql/client"; export interface UpsertLanesCacheResult { vaultPath: string; ran: boolean; lanesUpserted: number; membersUpserted: number; durationMs: number; } export interface UpsertLanesCacheOpts { lytDb?: Client; nowIso?: string; } export declare function upsertLanesCache(vaultPath: string, opts?: UpsertLanesCacheOpts): Promise; //# sourceMappingURL=upsert-lanes-cache.d.ts.map