//#region src/core/Response.d.ts declare class Response { [key: string]: any; body: any; headers: Headers; sent: boolean; statusCode: number; statusText: string; constructor(init?: Partial); status(code: number): this; setStatusText(text: string): this; code(code: number): this; setHeader(name: string, value: string): this; header(name: string, value: string): this; set(name: string, value: string): this; type(contentType: string): this; send(body?: any): this; json(body: any): this; html(body: string): this; text(body: string): this; noContent(): this; } //#endregion export { Response };