import { AuthCommand } from '../authCommand.js'; import { ImportPlan } from '../../rest/projects.js'; import { BaseCommand } from '../baseCommand.js'; 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;