import { BaseCommand } from '../../base-command.js'; export default class ApiCall extends BaseCommand { static args: { operationId: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static flags: { body: import("@oclif/core/interfaces").OptionFlag; 'body-file': import("@oclif/core/interfaces").OptionFlag; path: import("@oclif/core/interfaces").OptionFlag; query: import("@oclif/core/interfaces").OptionFlag; timeout: import("@oclif/core/interfaces").OptionFlag; }; static summary: string; run(): Promise<{ operation: { id: string; method: string; path: string; target: string; }; request: { body: unknown; query: Record; timeoutSeconds: number; }; response: unknown; }>; private parsePathParams; private parseQueryParams; private parseBody; }