import type { CurveType, MarkShape, SeriesId } from '@mui/x-charts/models'; export interface RadialLinePoint { x: number; y: number; radius: number; baseRadius: number; angle: number; dataIndex: number; } interface RadialLinePlotDataPoint { points: RadialLinePoint[]; seriesId: SeriesId; color: string; hidden: boolean; showMark: boolean; shape: MarkShape; area?: boolean; curve?: CurveType; closePath?: boolean; } export declare function useRadialLinePlotData(): RadialLinePlotDataPoint[]; export {};