export type Props = JSX.IntrinsicElements['circle'] & {
    ref?: undefined;
    cx?: undefined;
    cy?: undefined;
    r?: undefined;
};
export declare const defaultProps: {
    stroke: string;
    fill: string;
    strokeWidth: number;
    strokeLinecap: string;
};
export declare const CircularTrack: {
    ({ strokeWidth, ...props }: Props): JSX.Element;
    defaultProps: {
        stroke: string;
        fill: string;
        strokeWidth: number;
        strokeLinecap: string;
    };
};
