/// import * as uui from '@epam/uui'; type CountIndicatorMods = Pick & { /** Defines component color. */ color: 'gray' | 'white' | 'blue' | 'green' | 'amber' | 'red' | uui.CountIndicatorProps['color']; }; /** Represents the properties of a CountIndicator component. */ export type CountIndicatorProps = uui.CountIndicatorCoreProps & CountIndicatorMods; export declare const CountIndicator: (props: import("@epam/uui-core").IHasCaption & import("@epam/uui-core").IHasCX & Pick & { /** Defines component color. */ color: 'gray' | 'white' | 'blue' | 'green' | 'amber' | 'red' | uui.CountIndicatorProps['color']; } & import("react").RefAttributes) => import("react").ReactElement>; export {}; //# sourceMappingURL=CountIndicator.d.ts.map