export interface GeoDataPlotProps { className?: string; /** * Fill color applied to every feature path. * @default 'currentColor' */ fill?: string; /** * Stroke color applied to every feature path. * @default 'none' */ stroke?: string; /** * Stroke width applied to every feature path. * @default 1 */ strokeWidth?: number; } /** * Renders the registered `geoData` as SVG paths, using the registered `projection` */ declare function GeoDataPlot(props: GeoDataPlotProps): import("react").JSX.Element | null; declare namespace GeoDataPlot { var propTypes: any; } export { GeoDataPlot };