import { type FC, type HTMLAttributes, type Ref } from 'react'; export interface PieChartDonutProps extends HTMLAttributes { ref?: Ref; /** * Opacity applied to slices that are not currently hovered. Defaults to `0.3`. * Set to `1` to disable the hover-dim effect. */ inactiveOpacity?: number; /** * Disable the recharts mount/transition animation. Defaults to `false`. * Set `true` in test/screenshot environments where deterministic frames matter. */ disableAnimation?: boolean; } export declare const PieChartDonut: FC;