export interface MlStorageCore { setItem(key: string, value: any, options?: any): void getItem(key: string): T | null removeItem(key: string): void } export const MaliStorage: MlStorageCore