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