import * as react_jsx_runtime from 'react/jsx-runtime';

interface AlertIconProps extends Omit<React.HTMLAttributes<SVGSVGElement>, 'color'> {
    type?: 'info' | 'green' | 'yellow' | 'error';
    filled?: boolean;
}
declare const AlertIcon: (props: AlertIconProps) => react_jsx_runtime.JSX.Element;

export { AlertIcon, AlertIconProps };
