import * as React from 'react';
import './styles.scss';
interface AlertIconProps {
    width: string;
    height: string;
    fill?: string;
}
declare const AlertIcon: ({ fill, width, height }: AlertIconProps) => React.JSX.Element;
export default AlertIcon;
