import { Country, CountryListKeyType, CountryListState } from './countryListState'; export interface CountryListSelectorView { countries: Country[]; countryListKey: CountryListKeyType; } export declare const getCountryList: (countryListState: CountryListState, countryListKey: CountryListKeyType) => CountryListSelectorView;