import * as React from 'react'; export interface IconBaseProps extends React.HTMLProps { spin?: boolean; rotate?: number; } export interface CustomIconComponentProps { width: string | number; height: string | number; fill: string; viewBox?: string; className?: string; style?: React.CSSProperties; } export interface IconComponentProps extends IconBaseProps { viewBox?: string; component?: React.ComponentType> | React.ForwardRefExoticComponent; ariaLabel?: React.AriaAttributes['aria-label']; } declare const Icon: React.ForwardRefExoticComponent & React.RefAttributes>; export default Icon;