import { FC } from 'react';

export interface RadialValueMarkerProps {
    color: string;
    value: number;
    className?: string;
    thickness?: number;
}
export declare const RadialValueMarker: FC<RadialValueMarkerProps>;
