/**
 * Transform the cookie headers of a node HTTP `req` Object into a hash.
 */
export declare function parseCookies(req: {
    headers: {
        [key: string]: string | string[];
    };
}): object;
