export default class LocalStorage {
    static get(name: string): string;
    static set(name: string, val: any): void;
}
