import { type VaultRow } from "../registry/repo.js"; export declare const SNAPSHOT_BRANCH_PREFIX = "lyt-snapshot/"; export interface SnapshotFlowArgs { name: string; label?: string; now?: Date; } export interface SnapshotFlowResult { vault: VaultRow; branch: string; sha: string; workingTreeIncluded: boolean; uncommittedPathCount: number; } export declare function snapshotVaultFlow(args: SnapshotFlowArgs): Promise; //# sourceMappingURL=snapshot.d.ts.map