import { IconFontProps } from "@ant-design/icons/lib/components/IconFont";
interface FontIconProps extends IconFontProps<string> {
    size?: number;
    color?: string;
    type: string;
}
export default function FontIcon(props: FontIconProps): import("react/jsx-runtime").JSX.Element;
export {};
