import React from 'react'; import type { IHasCX, Overwrite } from '@epam/uui-core'; type StatusIndicatorColor = 'neutral' | 'info' | 'success' | 'warning' | 'critical'; type StatusIndicatorMods = { /** * Component color. * @default 'neutral' */ color?: StatusIndicatorColor; }; export interface StatusIndicatorModsOverride { } export type StatusIndicatorCoreProps = IHasCX & { /** * Component size. If omitted, 24 size will be used. * @default '24' */ size?: '24' | '18' | '12'; /** * Fill mode, solid is used by default * @default 'solid' */ fill?: 'solid' | 'outline'; /** Component caption. */ caption: string; }; export type StatusIndicatorProps = StatusIndicatorCoreProps & Overwrite; export declare const StatusIndicator: React.ForwardRefExoticComponent & StatusIndicatorModsOverride & React.RefAttributes>; export {}; //# sourceMappingURL=StatusIndicator.d.ts.map