import React, { ElementType, ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react' export interface IconProps extends React.DetailedHTMLProps, HTMLElement> { component?: ElementType size?: 'lg' | 'xs' | 'sm' | 'lx' | '1x' | '2x' | '3x' | '4x' | '5x' | '6x' | '7x' | '8x' | '9x' | '10x' | 'fw' variant?: 'regular' | 'brand' | 'solid' } export type IconType = ForwardRefExoticComponent & RefAttributes> declare const _default: (faClassName: string, defaultVariant: 'la' | 'lab' | 'las') => IconType export default _default