import { FC } from 'react'; import { CountryData } from '../shared/geography/countries'; export interface GeographySwitcherProps { /** All available countries */ countries: CountryData[]; /** Currently selected country code */ currentCountryCode: string | null; /** Callback when country changes */ onCountryChange?: (country: CountryData) => void; /** Show as icon only (for small screens) */ compact?: boolean; } /** * GeographySwitcher Component * * Allows switching between different countries/geographies. * Countries are grouped by region with search filtering. * * On small screens (when compact=true), shows as icon with popup */ export declare const GeographySwitcher: FC; //# sourceMappingURL=GeographySwitcher.d.ts.map