import { SnackbarStackProps, SnackbarStackRef } from './SnackbarStack.types'; /** * SnackbarStack - A component that manages and displays multiple stacking snackbars * * This component renders snackbars in a fixed position on the screen and handles * their lifecycle including auto-dismiss timers and animations. * * @example * ```tsx * const [alerts, setAlerts] = useState>(new Map()); * * const addAlert = (alert: SnackbarAlert) => { * setAlerts(prev => new Map(prev).set(alert.id, alert)); * }; * * const removeAlert = (id: string) => { * setAlerts(prev => { * const next = new Map(prev); * next.delete(id); * return next; * }); * }; * * * ``` */ export declare const SnackbarStack: import('react').ForwardRefExoticComponent>; export default SnackbarStack; //# sourceMappingURL=SnackbarStack.d.ts.map