import type { TAlert } from './types'; export declare type TMapOffline = { alerts: TAlert[]; setAlerts: (alerts: TAlert[]) => void; onItemClose: (id: string) => void; }; export declare const mapOffline:

() => (arg: P) => P;