type Cookie = {
    name: string;
    value: string;
};
export declare const MAX_COOKIE_LENGTH = 4096;
export declare function chunkCookieValue(cookieName: string, cookieValue: string, maxLength?: number): Array<Cookie>;
export declare function parseChunkedCookies(cookieName: string, allCookies: Array<Cookie>): string | undefined;
export {};
