import React, { ReactNode } from "react"; import type { Feature } from "geojson"; import type { GeoPath, GeoProjection } from "d3-geo"; import type { Geography, PreparedFeature } from "../utils"; export interface GeographiesChildrenProps { geographies: PreparedFeature[]; outline: PreparedFeature | undefined; borders: PreparedFeature | undefined; path: GeoPath; projection: GeoProjection; } export interface GeographiesProps extends Omit, "children"> { geography: string | Geography | Feature[]; children: (props: GeographiesChildrenProps) => ReactNode; parseGeographies?: (features: Feature[]) => Feature[]; className?: string; } declare const Geographies: React.ForwardRefExoticComponent & React.RefAttributes>; export default Geographies; //# sourceMappingURL=Geographies.d.ts.map