/// <reference types="react" />
export type GaugeHorizontalProps = {
    className?: string;
    color?: string;
    bgColor?: string;
    strokeWidth?: number;
    length?: number;
    percent: number;
};
export declare const GaugeHorizontal: React.FC<GaugeHorizontalProps>;
