/// import { PolarChartProps } from '../../../props'; /** * A React component comparing multiple categories/variables with a spatial perspective in a radial chart. * * @example * Polar chart displaying total revenue per age range from the Sample ECommerce data model. * * ```tsx * import { PolarChart } from '@sisense/sdk-ui'; * import { measureFactory } from '@sisense/sdk-data'; * import * as DM from './sample-ecommerce'; * * const CodeExample = () => ( * * ); * * export default CodeExample; * ``` * * * * Area polar chart variant, using the same data: * * ```tsx * * ``` * * * * Line polar chart variant, using the same data: * * ```tsx * * ``` * * * * @param props - Polar chart properties * @returns Polar Chart component * @group Charts */ export declare const PolarChart: import("react").FunctionComponent;