import React, { FunctionComponentElement } from 'react'; import { Country, RegionArray, RegionValue } from './interface'; export interface IGeoZonePickerProps { style?: Record; countryClassName?: string; regionClassName?: string; className?: string; prefixCls?: string; disabled?: boolean; children?: React.ReactNode; level?: number; bordered?: boolean; countryList?: Country[]; geoZoneData?: RegionArray; provinceGroup?: string[][]; defaultCountry?: string; showSearch?: boolean; tabOptions?: string[]; onClear?: () => void; onChange?: (value: RegionValue) => void; onCountryChange?: (value: Country) => void; } declare const GeoZonePicker: { (props: IGeoZonePickerProps): FunctionComponentElement; displayName: string; }; export default GeoZonePicker;