export interface HotAddress {
  categoryName: string
  hint?: string
  tips?: string
  childAddress: ChildHotAddress[]
}
export interface ChildHotAddress {
  addressName: string
  addrFlag?: boolean
  addressType?: string
  area?: string
  categoryName?: string
  createDate?: string
  hotAddressId?: string
  icon?: string
  lastModifyDate?: string
  latitude?: string
  keywords?: string
  className?: string
  cityId: string
  areaId: string
  provinceId: string
  longitude?: string
  weightSort?: string
  addressInfo?: string
}
export declare const getHotAddress: () => Promise<import('../../../action').IResData<HotAddress[]>>
export interface LcbAddress {
  addressName: string
  addrFlag: boolean
  addressType: string
  categoryName: string
  keywords?: string
  cityId: string
  areaId: string
  provinceId: string
  hotAddressId: string
  provinceCityName: string
  area: string
  weightSort: string
}
export declare const getAddressList: (
  addressName: string,
) => Promise<import('../../../action').IResData<LcbAddress[]>>
