import { KeyValue } from './internalTypes';
export interface IWireMockResponse {
    body?: unknown;
    headers?: Record<string, KeyValue>;
    status: number;
}
