import { RendererIcon } from './types'; interface FontAwesomeSolidIconProps { /** * Optional extra class name to apply to the icon element. */ className?: string; icon: RendererIcon; /** * Specify whether the icon should be hidden from screenreaders or not. Hidden by default. */ 'aria-hidden'?: boolean | 'true' | 'false'; /** * Accessible icon label in case the icon is not hidden to screen readers. */ 'aria-label'?: string; 'aria-describedby'?: string; 'aria-disabled'?: boolean | 'true' | 'false'; onClick?: (event: React.UIEvent) => void; } declare const FontAwesomeSolidIcon: import('react').ForwardRefExoticComponent>; export { FontAwesomeSolidIcon };