import { FunctionalComponent } from 'vue';
import { AntdIconProps } from '../components/AntdIcon';
export interface AlertFilledIconType extends FunctionalComponent<AntdIconProps> {
displayName: string;
}
declare const AlertFilled: AlertFilledIconType;
export default AlertFilled;