import { UseIconProps, IconCfg } from '../PropsType'; export declare const ICON_FILE_IMAGE = "ICON_IMAGE"; export declare const ICON_FILE_ICONFONT = "ICONFONT"; /** * 判断 icon 配置是否有效 * 注:需要与下述渲染判断逻辑保持同步! * @param icon */ export declare const handleIsValidIconCfg: (icon: IconCfg) => boolean; declare const useIcon: (props: UseIconProps) => any; export { useIcon, };