import React from 'react'; import type { GeoChartProps } from './geo-chart.props'; export type WorldChartProps = Omit & { /** @default 'world' */ mapName?: string; }; /** * Wrapper around GeoChart with the world map pre-loaded (uses default in GeoChart). * Pass data with country/region names matching world.json (e.g. "United States", "China"). */ export declare function WorldChart({ mapName, ...props }: WorldChartProps): React.JSX.Element; export declare namespace WorldChart { var displayName: string; } //# sourceMappingURL=world-chart.d.ts.map