import { type VaultRow } from "../registry/repo.js"; export interface RestoreFlowArgs { name: string; fromSnapshot: string; force?: boolean; } export interface RestoreFlowResult { vault: VaultRow; branch: string; restoredFrom: string; commitCreated: boolean; commitSha: string | null; } export declare function restoreVaultFlow(args: RestoreFlowArgs): Promise; //# sourceMappingURL=restore.d.ts.map