export declare class DataStoreService { protected store: any; constructor(); readonly local: any; readonly session: any; protected getItem(type: string, key: string): Promise; protected setItem(type: string, key: string, value: string): Promise; protected removeItem(type: string, key: string): Promise; protected keys(type: string): Promise; }