import { APICommand } from '../index.js'; import { JsonObj } from '../result.js'; export default class Create extends APICommand { static args: { name: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static description: string; static examples: string[]; static flags: { secret: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; 'secret-key-name': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; confidential: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; 'env-var': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; type: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; value: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; }; run(): Promise; private createBooleanFlag; private createLogLevel; /** * Mirror the server-side create to disk under QUONFIG_DIR so the user can * `qfg verify` (or just open the JSON) without a follow-up `qfg pull`. * Best-effort — server already created the flag, so we never let local-disk * problems fail the command. Closes qfg-d5t. */ private syncConfigToDisk; }