import type { CommandDef } from '../core/types.js'; export type ExecuteOpenApiOptions = { baseUrl: string; authHeaders?: Array<[string, string]>; stdinBody?: unknown; }; export declare function executeOpenApi(command: CommandDef, values: Record, options: ExecuteOpenApiOptions): Promise<{ status: number; ok: boolean; text: string; contentType: string; }>;