/// import type { PDSIconType, UiColors } from '../../common'; export type IconProps = { iconName?: PDSIconType; size?: 12 | 16 | 20 | 24 | 32 | 40 | 48 | 56 | 64 | 72; colorKey?: UiColors; overrideColorHex?: string; fillType?: 'line' | 'fill'; } & Record; declare const Icon: ({ iconName, size, colorKey, overrideColorHex, fillType }: IconProps) => JSX.Element; export default Icon;