import type { RESPONSE_MANAGER_TOKEN } from '@tramvai/tokens-common'; type Interface = typeof RESPONSE_MANAGER_TOKEN; export declare class ResponseManager implements Interface { private body; private headers; private cookies; private status; constructor(); getBody(): string; setBody(value: string): void; getHeader(key: string): string | string[]; getHeaders(): Record | { 'Set-Cookie': string[]; }; setHeader(key: string, value: string): void; getCookie(key: string): string; getCookies(): Record; setCookie(key: string, value: string): void; setStatus(status: number): void; getStatus(): number; } export {}; //# sourceMappingURL=responseManager.d.ts.map