import { IObjectMap } from './models';
/**
 * This internal store class
 */
export declare class InternalStore {
    store: IObjectMap<any>;
    getItem(prop: string): any;
    setItem(prop: string, data: any): void;
    clear(): void;
    removeItem(prop: string): void;
}
