import type { CommandArguments, CommandResult } from "../../../shared/interfaces/command.interface.js"; import { BaseCommand } from "../base.command.js"; /** * Snapshot command handler * Creates deterministic lockfile for the current spec */ export declare class SnapshotCommand extends BaseCommand { readonly name = "snapshot"; readonly description = "Create deterministic lockfile for the current spec"; private readonly logger; execute(args: CommandArguments): Promise; } //# sourceMappingURL=snapshot.command.d.ts.map