export declare class Cookie { private key; private value; private expires; private path; private domain; constructor(key: string, value: string, expires?: Date | number, path?: string, domain?: string); getString(): string; private getExpiresString(); }