import { alert } from './types'; type State = alert[]; type Action = { type: 'ADD'; payload: alert; } | { type: 'REMOVE'; payload: string; }; export declare const initialState: never[]; export declare const reducer: (state: State, action: Action) => alert[]; export {};