export declare class Response { readonly statusCode: number; readonly bodyRaw: T | string; readonly body: T; constructor(statusCode: number, body: string | T); }