import type { JSX, ReactNode } from 'react'; import type { Severity } from '../../constants/severity.types'; export interface AlertProps { children: ReactNode; title?: ReactNode; headlineSize?: 1 | 2 | 3 | 4 | 5 | 6; severity?: Severity; customIcon?: ReactNode; disableIcon?: boolean; fullWidth?: boolean; maxWidth?: string | number; role?: 'status' | 'alert'; } export declare function Alert({ children, title, headlineSize, severity, customIcon, disableIcon, fullWidth, maxWidth, role, }: AlertProps): JSX.Element;