import React from 'react'; export type IconProps = React.SVGProps & { type: string; className?: string; name?: string; spin?: boolean; }; export declare const Icon: (props: IconProps) => React.JSX.Element;