declare const setStorage: (key: string, value: any, expire?: number) => boolean;
declare const getStorageFromKey: (key: string) => any;
declare const getAllStorage: () => any;
declare const getStorageLength: () => number;
declare const removeStorageFromKey: (key: string) => void;
declare const clearStorage: () => void;
export { setStorage, getStorageFromKey, getAllStorage, getStorageLength, removeStorageFromKey, clearStorage, };
