import { default as React, Ref } from 'react'; import { IconName } from '../Icon'; export type HighlightIconVariant = 'alert' | 'info' | 'success' | 'warning' | 'neutral' | 'apricot' | 'blue' | 'carbon' | 'emerald' | 'forest' | 'grolive' | 'lemon' | 'ocean' | 'pink' | 'peach' | 'purple'; type Size = 24 | 32 | 40 | 56; export type HighlightIconProps = { ref?: Ref; /** * className for the element. */ className?: string; /** * The icon to display in the component. */ name: IconName; /** * The size of the element. * @default l */ size?: Size; /** * The visual style of the HighlightIcon. * @default warning */ variant?: HighlightIconVariant; }; export declare const HighlightIcon: ({ className, name, size, variant, ref, ...rest }: HighlightIconProps) => React.JSX.Element; export {}; //# sourceMappingURL=HighlightIcon.d.ts.map