export declare const cookies: { getItem: (sKey: string) => string | null; setItem: (sKey: string, sValue: string, vEnd?: any, sPath?: string, sDomain?: string, bSecure?: string) => boolean; removeItem: (sKey: any, sPath: any | undefined, sDomain: any) => boolean; hasItem: (sKey: string) => boolean; };