import { PlatformService } from '../platform/platform.service';
export declare class Storage {
    private platform;
    constructor(platform: PlatformService);
    set(key: string, data: string, useCookie?: boolean): void;
    get(key: string, useCookie?: boolean): any;
    remove(key: string, useCookie?: boolean): any;
}
