import { type VaultRow } from "../registry/repo.js"; import { type BranchInfo } from "../util/git-run.js"; export interface ListSnapshotsArgs { name: string; } export interface ListSnapshotsResult { vault: VaultRow; snapshots: BranchInfo[]; } export declare function listSnapshotsFlow(args: ListSnapshotsArgs): Promise; //# sourceMappingURL=list-snapshots.d.ts.map