import { OutgoingHttpHeaders } from 'http'; import { Http } from '.'; export declare class Response { body: T; status: Http.Status; headers: OutgoingHttpHeaders; constructor(body: T, status?: Http.Status, headers?: OutgoingHttpHeaders); static ok(content: string | object): Response; static notFound(content: string | object): Response; static badRequest(content: string | object): Response; setHeader(name: string, value: string): void; setHeaders(headers: OutgoingHttpHeaders): void; } //# sourceMappingURL=Response.d.ts.map