import React from 'react'; import { NativeProps } from '@pxxtech/utils/lib/with-native-props'; export declare type IconProps = React.HTMLAttributes & { type: string; spin?: boolean; } & NativeProps; export declare const Icon: React.ForwardRefExoticComponent & { type: string; spin?: boolean | undefined; } & NativeProps & React.RefAttributes>;