import Command from '../abstracts/AbstractCommitCommand'; export declare class AmendLastCommand extends Command { static description: string; run(): Promise; getPrompts(): Promise; runCommit(message: string, fileNames: string[]): Promise; }