export declare class Response {
    status?: number;
    body?: object | string;
    constructor(status?: number, body?: object | string);
}
