import type { ImportExtension, RefHandling } from '../types.js'; export declare const cliCommand: import("citty").CommandDef<{ readonly config: { readonly type: "string"; readonly description: "Path to a JS/TS config file (default export = Options). When used, no other flags are allowed."; }; readonly input: { readonly type: "string"; readonly description: "Path to the OpenAPI document (JSON or YAML)."; }; readonly collections: { readonly type: "string"; readonly description: "Comma-separated OpenAPI paths to collections of definitions (e.g. \"components.schemas\")."; }; readonly single: { readonly type: "string"; readonly description: "Comma-separated OpenAPI paths to individual definitions (e.g. \"paths./users/{id}\")."; }; readonly output: { readonly type: "string"; readonly description: "Output directory. Defaults to \"/schemas-autogenerated\"."; }; readonly 'import-extension': { readonly type: "enum"; readonly options: ImportExtension[]; readonly description: "Import specifier extension used in generated files."; }; readonly 'ref-handling': { readonly type: "enum"; readonly options: RefHandling[]; readonly description: "Strategy for $ref processing."; }; readonly silent: { readonly type: "boolean"; readonly description: "Suppress logging output."; }; }>;