import { AuthCommand } from '../authCommand'; import { ImportPlan } from '../../rest/projects'; import { BaseCommand } from '../baseCommand'; export default class ImportCommitCommand extends AuthCommand { #private; static hidden: boolean; static description: string; static flags: { config: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; } export declare function confirmCommit(this: BaseCommand): Promise; export declare function performCommitAction(this: BaseCommand, plan: ImportPlan): Promise;