import { FC } from 'react'; import { IconProps } from '../../../Icon'; export type AlertIconProps = IconProps; /** * AlertIcon displays a contextual icon for an Alert based on its variant. * It provides a visual cue that reinforces the meaning or severity * of the alert (e.g. success, warning, error). * * By default, the icon is automatically selected according to the * current Alert variant. A custom icon can be provided via children * to override the default mapping. */ export declare const AlertIcon: FC;