import { LyraJSAPIMethodBrowser } from './index'; export declare type TStorageValue = string; export declare type TStorageKey = string; export interface ISetTinyLocalStorageOptions { data: TStorageValue; key: TStorageKey; type: string; value: string; } export interface IGetTinyLocalStorageOptions { key: TStorageKey; type: string; } export interface IGetTinyLocalStorageResponse { data: TStorageValue; } export interface IGetTinyLocalStorageInfoResponse { keys: string[]; currentSize: number; limitSize: number; } export interface IRemoveTinyLocalStorageOptions { key: TStorageKey; type: string; } export interface IStorageAPI { setTinyLocalStorage: LyraJSAPIMethodBrowser; getTinyLocalStorage: LyraJSAPIMethodBrowser; getTinyLocalStorageInfo: LyraJSAPIMethodBrowser<{}, IGetTinyLocalStorageInfoResponse, false>; removeTinyLocalStorage: LyraJSAPIMethodBrowser; clearTinyLocalStorage: LyraJSAPIMethodBrowser<{}, null, false>; } //# sourceMappingURL=storage.d.ts.map