import React from 'react';
import { IBaseElement, IPropsAny } from '../types';
export declare type IRoundProgress = IBaseElement & {
    version?: 'determinate' | 'indeterminate';
    value?: number;
    noShrink?: boolean;
    thickness?: number;
    rounded?: boolean;
    pathProps?: IPropsAny;
    pathBackgroundProps?: IPropsAny;
};
declare const RoundProgress: React.FC<IRoundProgress>;
export default RoundProgress;
