export declare type IconFontType = 'car' | 'warehouse' | 'dot' | 'truck' | 'dahuoche'; export interface IconProps { type: IconFontType; } declare function Icon(props: IconProps): JSX.Element; export interface IconFontProps { size?: [number, number]; color?: string; className?: string; } export declare function iconStr(type: string, props: IconFontProps): string; export default Icon;