import type { CommandArguments, CommandResult } from "../../../shared/interfaces/command.interface.js"; import { BaseCommand } from "../base.command.js"; /** * Destroy command handler * Removes envkit state from the current workspace */ export declare class DestroyCommand extends BaseCommand { readonly name = "destroy"; readonly description = "Remove envkit state from the current workspace"; private readonly logger; private listStateEntries; private removeStateEntry; execute(args: CommandArguments): Promise; } //# sourceMappingURL=destroy.command.d.ts.map