import type { Arc, PieArcDatum } from 'd3-shape'; import { InternalSliceData } from '../types/internal/pie-chart.js'; export interface PieSliceProps { sliceId: string; arc: PieArcDatum; data: InternalSliceData; path: Arc>; isHighlighted: boolean; } export declare const PieChartSlice: { (props: PieSliceProps): import("react/jsx-runtime").JSX.Element; displayName: string; };