///
import * as uui from '@epam/uui';
import { EpamPrimaryColor } from '../types';
type StatusIndicatorColor = EpamPrimaryColor | 'white' | 'gray' | 'yellow' | 'orange' | 'fuchsia' | 'purple' | 'violet' | 'cobalt' | 'cyan' | 'mint' | uui.StatusIndicatorProps['color'];
type StatusIndicatorMods = {
/**
* Defines component color.
* @default 'gray'
*/
color?: StatusIndicatorColor;
};
/** Represents the props for the StatusIndicator component. */
export type StatusIndicatorProps = uui.StatusIndicatorCoreProps & StatusIndicatorMods;
export declare const StatusIndicator: (props: import("@epam/uui-core").IHasCX & {
size?: "12" | "18" | "24";
fill?: "solid" | "outline";
caption: string;
} & StatusIndicatorMods & import("react").RefAttributes) => import("react").ReactElement>;
export {};
//# sourceMappingURL=StatusIndicator.d.ts.map