import type { JSX } from 'react'; import type { AlertTone } from '../utils/common-types'; declare function AlertIcon({ tone, ...props }: JSX.IntrinsicElements['svg'] & { tone: AlertTone; }): JSX.Element | null; export { AlertIcon };