import { CSSProperties } from 'react'; import icons from '../../icons/index.js'; import { Color } from '../../tokens/colors.js'; export declare const ICONS: string[]; export type IconProps = { variant: keyof typeof icons; size?: 'regular' | 'small'; style?: CSSProperties; color?: 'inherit' | Color; scaleChevrons?: boolean; }; export declare function Icon({ variant, size, style, color, scaleChevrons, }: IconProps): import("react/jsx-runtime").JSX.Element;