import { AlertData } from '../../types'; export declare const useAlertManager: () => { addAlert: (alert: AlertData) => void; removeAlert: (id: string) => void; alerts: AlertData[]; };