import React from 'react';
import { IBaseElement, IColor, IPropsAny, ISize, ITonal } from '../types';
export interface IRoundProgress extends IBaseElement {
    tonal?: ITonal;
    color?: IColor;
    size?: ISize;
    version?: 'determinate' | 'indeterminate';
    value?: number;
    noShrink?: boolean;
    thickness?: number;
    rounded?: boolean;
    pathProps?: IPropsAny;
    pathBackgroundProps?: IPropsAny;
}
declare const RoundProgress: React.FC<IRoundProgress>;
export default RoundProgress;
