import { Geography } from "../types/index.js"; import React, { ChangeEventHandler } from "react"; export interface GeographySwitcherProps { curGeographyId: string; geographies: Geography[]; changeGeography: ChangeEventHandler; } export declare const GeographySwitcher: React.FunctionComponent;