import { FC } from "react";
export interface IProgressBarProps {
    /** Progress prop can be number. */
    progress: number;
    /** Custom classname for styling. */
    backgroundColor?: string;
    /** Custom classname for styling. */
    progressColor?: string;
    /** Progress height. */
    stroke?: number;
    /** Progress width in percentage. */
    width?: number;
    className?: string;
}
export declare const ProgressBar: FC<IProgressBarProps>;
//# sourceMappingURL=ProgressBar.d.ts.map