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