import { STORAGE } from './types';
export declare const storageGet: <T extends object>(key: string, type?: STORAGE) => string | T;
export declare const storageSet: (key: string, value: any, type?: STORAGE) => void;
export declare const storageDeleteKey: (key: string, type?: STORAGE) => void;