/** * Snapshot Commands * * CLI commands for managing database snapshots. * Supports create, restore, list, and diff operations. */ import { Command } from 'commander'; /** * Snapshot create command */ export declare const snapshotCreateCommand: Command; /** * Snapshot restore command */ export declare const snapshotRestoreCommand: Command; /** * Snapshot list command */ export declare const snapshotListCommand: Command; /** * Snapshot diff command */ export declare const snapshotDiffCommand: Command; /** * Snapshot delete command */ export declare const snapshotDeleteCommand: Command; //# sourceMappingURL=snapshot.d.ts.map