import { FC } from 'react'; import { FontColor, FontSize, IconName, ResponsiveProp } from '../../types'; export interface IconProps { className?: string; /** * A color token identifier to use for the text color. */ color?: FontColor | ResponsiveProp; /** * A [font size token](/?path=/docs/design-tokens-design-tokens--page#font-size) identifier */ size?: FontSize | ResponsiveProp; /** * Name of the icon */ name: IconName; /** * Additional props to be spread to rendered element */ [x: string]: any; } export declare const Icon: FC;