import type { PropsWithChildren } from 'react'; import { type AlertProps } from '../../../lib/ui/Alert/Alert.js'; interface AlertsProps extends PropsWithChildren { alerts?: AlertProps[]; className?: string; } export declare function Alerts(props: AlertsProps): JSX.Element | null; export {};