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