import { PropsWithChildren, FunctionComponent } from 'react';
import { KpiIndicatorColor } from './utils.js';

interface KpiIndicatorProps extends PropsWithChildren {
    disabled?: boolean;
    colorScheme: KpiIndicatorColor;
}
declare const KpiIndicator: FunctionComponent<KpiIndicatorProps>;

export { KpiIndicator as default };
export type { KpiIndicatorProps };
