export default class HttpCookie {
    readonly name: string;
    readonly value: string;
    readonly path?: string | undefined;
    readonly domain?: string | undefined;
    readonly expires?: string | undefined;
    readonly maxAge?: number | undefined;
    readonly secure?: boolean | undefined;
    readonly httpOnly?: boolean | undefined;
    constructor(name: string, value: string, path?: string | undefined, domain?: string | undefined, expires?: string | undefined, maxAge?: number | undefined, secure?: boolean | undefined, httpOnly?: boolean | undefined);
}
