import { FC } from 'react';
export interface RadialValueMarkerProps {
    /**
     * Color of the marker circle stroke.
     */
    color: string;
    /**
     * Radius value to render the marker at.
     */
    value: number;
    /**
     * CSS class to apply.
     */
    className?: string;
    /**
     * Stroke width of the marker circle.
     *
     * @default 1
     */
    thickness?: number;
}
export declare const RadialValueMarker: FC<RadialValueMarkerProps>;
