import type { Feature } from "geojson"; import { Geography, PreparedFeature } from "../utils"; interface UseGeographiesOptions { geography: string | Geography | Feature[]; parseGeographies?: (features: Feature[]) => Feature[]; } export default function useGeographies({ geography, parseGeographies, }: UseGeographiesOptions): { geographies: PreparedFeature[]; outline: PreparedFeature | undefined; borders: PreparedFeature | undefined; }; export {}; //# sourceMappingURL=useGeographies.d.ts.map