import { Props as CircularTrackProps } from './CircularTrack';
type Props = JSX.IntrinsicElements['circle'] & CircularTrackProps & {
    strokeDasharray?: undefined;
    strokeDashoffset?: undefined;
    transform?: undefined;
};
export declare const CircularProgress: {
    (props: Props): JSX.Element;
    defaultProps: {
        stroke: string;
    };
};
export {};
