import type { FC, HTMLAttributes, Ref } from 'react'; export interface PieChartLegendValueProps extends HTMLAttributes { ref?: Ref; } export declare const PieChartLegendValue: FC;