interface ClientStorageOptions { daysUntilExpire: number; } export default class ClientStorage { get(key: string): T; save(key: string, value: any, options: ClientStorageOptions): void; remove(key: string): void; } export {};