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