import { FC } from 'react'; import { IconNameType, IconNameArray } from '@servicetitan/anvil-icons'; export { IconNameType, IconNameArray }; export interface IconPropsStrict { /** Additional classes */ className?: string; /** Fill color of icon */ color?: string; /** An element type to render as */ el?: any; /** Name of the icon */ name?: IconNameType; /** Size of icon */ size?: string | number; } export interface IconProps extends IconPropsStrict { [propName: string]: any; } export declare const Icon: FC;