/** * ToastContainer & ToastItem Components * * Stacked toast notifications with type-specific styling. * Renders right-aligned within the content area. * * @since v2.7.23 - New toast notification system */ import type React from 'react'; export interface Toast { id: string; message: string; detail?: string; type: 'success' | 'error' | 'warning' | 'info'; } export interface ToastContainerProps { toasts: Toast[]; maxVisible?: number; } export declare function ToastContainer({ toasts, maxVisible }: ToastContainerProps): React.ReactElement | null; //# sourceMappingURL=ToastContainer.d.ts.map