import * as React from 'react';
import { AsProp, ChildrenProp, HTMLAttributes } from '../../types';
export interface HorizontalProgressProps extends HTMLAttributes, AsProp, ChildrenProp {
    color?: string;
    isCapRound?: boolean;
    isIndeterminate?: boolean;
    max?: number;
    min?: number;
    trackColor?: string;
    value?: number;
}
export declare const HorizontalProgress: React.ForwardRefExoticComponent<HorizontalProgressProps & React.RefAttributes<HTMLDivElement>>;
