import { BaseCommand } from '../../base-command.js'; type ApplyResult = { id: string; name: string; status: string; version?: number; }; type ApplyError = { error: string; id: string; name: string; }; export default class ConfigTemplateApply extends BaseCommand { static args: { id: import("@oclif/core/interfaces").Arg>; }; static flags: { all: import("@oclif/core/interfaces").BooleanFlag; device: import("@oclif/core/interfaces").OptionFlag; 'dry-run': import("@oclif/core/interfaces").BooleanFlag; tag: import("@oclif/core/interfaces").OptionFlag; }; static description: string; static examples: string[]; static summary: string; run(): Promise<{ errors: ApplyError[]; items: ApplyResult[]; template: { id: string; name: string; }; }>; private fetchTargetDevices; } export {};