export interface Entry {
    key: string;
    body: string;
}
declare const Storage: {
    createCookie: (clientId: string, value: any, expires: Date) => Entry;
    getCookie: (key: string) => Object;
    deleteCookie: (key: string) => boolean;
    clearCookies: (key: string) => boolean;
};
export default Storage;
