import { type FieldsFile } from '../fields/export-fields'; export type CallValues = { method: string; path: string; pathParams?: Record; query?: Record; headers?: Record; body?: unknown; }; export declare function promptForOperation(fieldsFile: FieldsFile, options?: { method?: string; path?: string; }): Promise; export declare function executeCall(values: CallValues, extraHeaders?: Record): Promise; export declare function runInteractiveCall(options?: { fieldsFile?: string; method?: string; path?: string; headers?: Record; }): Promise; export declare function runFileCall(options: { valuesFile: string; headers?: Record; }): Promise;