import { ReactElement } from 'react'; import { EventAnnotationIconProps } from '../EventAnnotations'; export type AlertIconProps = { severity: string | undefined; isCleared?: boolean; } & EventAnnotationIconProps; export declare const AlertIcon: (props: AlertIconProps) => ReactElement;