import { STORE_TYPE } from './store';
export declare class Store {
    private availableTypes;
    constructor();
    hasAccess(prefType?: STORE_TYPE): boolean;
    getItem(key: string, prefType?: STORE_TYPE): string;
    setItem(key: string, value: string, prefType?: STORE_TYPE): void;
    removeItem(key: string, prefType?: STORE_TYPE): void;
    private getStore;
}
