import { AuthCommand } from '../authCommand'; export default class ImportPlanCommand extends AuthCommand { #private; static hidden: boolean; static readOnly: boolean; static idempotent: boolean; static description: string; static flags: { config: import("@oclif/core/interfaces").OptionFlag; root: import("@oclif/core/interfaces").OptionFlag; preview: import("@oclif/core/interfaces").BooleanFlag; 'debug-import-plan': import("@oclif/core/interfaces").BooleanFlag; 'debug-import-plan-input-file': import("@oclif/core/interfaces").OptionFlag; 'debug-import-plan-output-file': import("@oclif/core/interfaces").OptionFlag; }; static args: { resource: import("@oclif/core/interfaces").Arg>; }; static strict: boolean; static hiddenAliases: string[]; run(): Promise; cancelAndExit(): never; }