import * as React from 'react'; import type { ChartsClipPathProps } from "../ChartsClipPath/index.mjs"; import type { ChartsRadialGridProps } from "../ChartsRadialGrid/index.mjs"; import type { ChartsRadialAxisHighlightProps } from "../ChartsRadialAxisHighlight/index.mjs"; import type { ChartsLegendSlotExtension } from "../ChartsLegend/index.mjs"; import type { ChartsOverlayProps } from "../ChartsOverlay/index.mjs"; import type { ChartsRadialDataProviderProps } from "../ChartsRadialDataProvider/index.mjs"; import type { RadialLineChartProps } from "./RadialLineChart.mjs"; import type { ChartsWrapperProps } from "../ChartsWrapper/index.mjs"; import type { RadialLineChartPluginSignatures } from "./RadialLineChart.plugins.mjs"; /** * A helper function that extracts RadialLineChartProps from the input props * and returns an object with props for the children components of RadialLineChart. * * @param props The input props for RadialLineChart * @returns An object with props for the children components of RadialLineChart */ export declare const useRadialLineChartProps: (props: RadialLineChartProps) => { chartsWrapperProps: Omit; chartsContainerProps: ChartsRadialDataProviderProps<"radialLine", RadialLineChartPluginSignatures>; gridProps: ChartsRadialGridProps | undefined; axisHighlightProps: ChartsRadialAxisHighlightProps; clipPathProps: ChartsClipPathProps; clipPathGroupProps: { clipPath: string; }; overlayProps: ChartsOverlayProps; legendProps: ChartsLegendSlotExtension; children: React.ReactNode; };