import { Cookie } from './'; /** * parseCookie parses a string containing a single cookie into a Cookie * object. * * If the string cannot be properly parsed, undefined is returned. */ export declare function parseCookie(str: string): Cookie | undefined;