/// <reference types="react" />
export type GaugeCircularProps = {
    color?: string;
    bgColor?: string;
    percent: number;
};
export declare const GaugeCircular: React.FC<GaugeCircularProps>;
