import React from 'react'; import type { GeoChartProps } from './geo-chart.props'; export type USChartProps = Omit & { /** @default 'usa' */ mapName?: string; }; /** * Wrapper around GeoChart with the US states map pre-loaded. * Pass data with state names matching us-states.json (e.g. "Alabama", "California"). */ export declare function USChart(props: USChartProps): React.JSX.Element; export declare namespace USChart { var displayName: string; } //# sourceMappingURL=us-chart.d.ts.map