import { ConfigureCountryOptions } from './typings';
declare const configureCountryIso: (options: ConfigureCountryOptions) => {
    getIsoCodes: (lat: number, lng: number) => string[];
};
export default configureCountryIso;
