export declare class ExpiringLocalStorageProvider {
    set(variable: string, value: any, expiryMs: number): void;
    get(variable: string): any;
    remove(variable: string): void;
}
