import React from 'react'; import { TabType, RegionArray, Region, RegionValue } from './interface'; interface IRegionPickerPanelProps { prefixCls: string; regionPanelClass: string; currGeoZoneData: RegionArray; level: number; currProvince: Region | null; currCity: Region | null; currDistrict: Region | null; currTabKey: TabType; tabOptions: string[]; provinceGroup?: string[][]; setCurrProvince: (region: Region | null) => void; setCurrCity: (region: Region | null) => void; setCurrDistrict: (region: Region | null) => void; setCurrTabKey: (tab: TabType) => void; setCurrRegionData: (data: RegionValue | null) => void; setInputValue: (val: string) => void; setShowRegionPanel: (val: boolean) => void; } declare const _default: React.MemoExoticComponent>>; export default _default;