import React, { type PropsWithChildren } from "react"; interface PolarChartContext { data: Record[]; canvasSize: { width: number; height: number; }; labelKey: string; valueKey: string; colorKey: string; } declare const PolarChartContext: React.Context; interface PolarChartProviderProps { data: Record[]; canvasSize: { width: number; height: number; }; labelKey: string; valueKey: string; colorKey: string; } export declare const PolarChartProvider: (props: PropsWithChildren) => React.JSX.Element; export declare const usePolarChartContext: () => PolarChartContext; export {};