import { IconsNames } from '../../../../ui/index.js';
export interface IHighlightIcon {
    color: string;
    icon: {
        name: IconsNames;
        size: 'small' | 'regular';
    };
}
