import { KeyValue, Method } from './internalTypes';
export interface IWireMockRequest {
    body?: unknown;
    cookies?: Record<string, KeyValue>;
    endpoint: string;
    headers?: Record<string, KeyValue>;
    method: Method;
    queryParameters?: Record<string, KeyValue>;
    formParameters?: Record<string, KeyValue>;
    metadata?: Record<string, unknown>;
}
