import React from 'react';
import { BaseComponentProps } from '../internal/base-component';
export interface StatusIndicatorProps extends BaseComponentProps {
    type?: StatusIndicatorProps.Type;
    children?: React.ReactNode;
    iconAriaLabel?: string;
    colorOverride?: StatusIndicatorProps.Color;
}
interface InternalProps extends StatusIndicatorProps {
    uxdgInverted?: boolean;
}
export declare namespace StatusIndicatorProps {
    type Type = 'error' | 'warning' | 'success' | 'info' | 'stopped' | 'pending' | 'in-progress' | 'loading';
    type Color = 'blue' | 'grey' | 'green' | 'red';
}
export default function StatusIndicator({ type, children, iconAriaLabel, colorOverride, uxdgInverted, ...restProps }: InternalProps): JSX.Element;
export {};
