import { IServerResponse } from './IServerResponse'; import { HTTPResponse } from '../core/http'; export declare class ServerResponse implements IServerResponse { private res; init(): void; sendBadRequest(message: string): this; sendInternalError(error: Error): this; sendForbidden(message: string): this; sendNotFound(message: string): this; build(): HTTPResponse; body(data: any): this; }