import React, { FunctionComponent } from 'react'; import { RegionData, NextListObj } from './type'; export interface AddressProps { modelValue: (string | number)[]; type: string; province: RegionData[]; city: RegionData[]; country: RegionData[]; town: RegionData[]; height: string | number; onNextArea?: (cal: NextListObj) => void; onTabClick?: (type: string) => void; onClose?: () => void; } export declare const CustomRender: FunctionComponent & React.HTMLAttributes>;