/// import { AreamapChartProps } from '../../../props'; /** * A React component for visualizing geographical data as colored polygons on a map. * * For another way do display data on a map, see {@link @sisense/sdk-ui!ScattermapChart | `ScattermapChart`}. * * @example * Areamap chart displaying total revenue per country from the Sample ECommerce data model. The total revenue amount is indicated by the colors on the map. * * ```tsx * import { AreamapChart } from '@sisense/sdk-ui'; * import { measureFactory } from '@sisense/sdk-data'; * import * as DM from './sample-ecommerce'; * * const CodeExample = () => ( * * ); * * export default CodeExample; * ``` * * * * @param props - Areamap chart properties * @returns Areamap Chart component * @group Charts */ export declare const AreamapChart: import("react").FunctionComponent;