export declare class RequestLogEntry {
    body?: string;
    description: string;
    jsonBody?: any;
    method: string;
    url: string;
    constructor(url: string, method: string, description: string, body?: string);
}
export declare class ResponseLogEntry {
    body?: string;
    contentType?: string;
    contentLocation?: string;
    jsonBody?: any;
    status: number;
    constructor(status: number, body?: string, contentType?: string, contentLocation?: string);
}
export default class RequestResponseLogEntry {
    request: RequestLogEntry;
    response: ResponseLogEntry;
    constructor(request: RequestLogEntry, response: ResponseLogEntry);
}
