import { StoreState } from "../../../Store"; export declare namespace State { interface _AlertRecent { who: string; what: string; when: number | string; name: string; mesg: string; siteId: string; } interface AlertRecent extends _AlertRecent { when: string; } interface AlertRecentServer extends _AlertRecent { when: number; } type Data = { recent: AlertRecent[]; count: number; }; type DataServer = { recent: AlertRecentServer[]; count: number; }; interface ServerResponse { alerts: { recent: AlertRecentServer[]; count: number; }; } interface Props extends StoreState { pending: number; alert?: State.AlertRecent; } }