import * as React from 'react'; import { CSSProperties } from 'react'; import { IconProps as BaseIconProps } from './type'; export interface SpriteIconProps extends BaseIconProps { /** * 图标类型 */ name?: string; /** * 图标地址 */ url?: string | string[]; /** * @default true */ loadDefaultIcons?: boolean; /** * 样式 */ style?: CSSProperties; /** * 类名 */ className?: string; } /** * 图标组件 * svg 版本 */ export declare const Icon: React.ForwardRefExoticComponent>;