import Command from '../abstracts/AbstractCommitCommand'; export declare class CommitChangesCommand extends Command { static description: string; static flags: { noSummary: import("../../../../../../../Users/shakilsiraj/Documents/GitHub/ogit/node_modules/@oclif/parser/lib/flags").IBooleanFlag; }; run(): Promise; getPrompts(): Promise; runCommit(message: string, fileNames: string[], skipValidation: boolean): Promise; }