import Command from '../abstracts/AbstractStashCommand'; export declare class DeleteStashCommand extends Command { static description: string; getPrompts(): Promise; performStashOperation(answers: any): Promise; run(): Promise; protected shouldProceedWithPrompts: () => boolean; }