import * as React from 'react'; import type { CurveType, SeriesId } from '@mui/x-charts/models'; import type { RadialLinePoint } from "./useRadialLinePlotData.js"; export interface RadialLineOrAreaProps extends Omit, 'ref' | 'points'> { seriesId: SeriesId; color: string; hidden?: boolean; curve?: CurveType; points: RadialLinePoint[]; closePath?: boolean; } declare function RadialLine(props: RadialLineOrAreaProps): React.JSX.Element; export { RadialLine };