import { Context, HttpSession, HttpHeaders } from '@based/functions'; export declare const end: (ctx: Context, payload?: string | Buffer | Uint8Array) => void; export declare const sendHeaders: (ctx: Context, headers: HttpHeaders) => void; export declare const sendHttpResponse: (ctx: Context, result: any, headers?: HttpHeaders, statusCode?: string) => void;