import type { CookieOptions, HttpOutgoing } from '../interfaces/http-outgoing.interface.js'; export interface HttpOutgoingHost extends HttpOutgoing { } export declare class HttpOutgoingHost { attachment(filename?: string): this; contentType(type: any): this; setHeader(field: string | Record, val?: any): this; clearCookie(name: string, options: CookieOptions): this; cookie(name: string, value: any, options?: CookieOptions): this; status(code: number): this; sendStatus(statusCode: number): this; links(links: Record): this; location(url: string): this; redirect(arg0: string | number, arg1?: string): void; send(body: any): this; vary(field: string): this; }