import React from 'react'; import type { IHasCaption, IHasCX, Overwrite } from '@epam/uui-core'; type CountIndicatorMods = { /** * Defines component color. */ color: 'neutral' | 'white' | 'info' | 'success' | 'warning' | 'critical'; /** * Defines component size. * @default '24' */ size?: '12' | '18' | '24'; }; export interface CountIndicatorModsOverride { } export type CountIndicatorCoreProps = IHasCaption & IHasCX; export type CountIndicatorProps = CountIndicatorCoreProps & Overwrite; export declare const CountIndicator: React.ForwardRefExoticComponent & CountIndicatorModsOverride & React.RefAttributes>; export {}; //# sourceMappingURL=CountIndicator.d.ts.map