import { WebCookies } from './WebCookies'; import { InternalWebRequest } from './InternalWebRequest'; import { WebApplicationSettings } from './WebApplicationSettings'; import { InternalWebResponse } from './InternalWebResponse'; import { CookieOptions } from './Cookies'; export declare class InternalWebCookies implements WebCookies { private req; private res; constructor(req: InternalWebRequest, res: InternalWebResponse); get(name: string, options?: any): string | undefined; set(name: string, value: string, options?: CookieOptions): void; }