/** * DbCityPicker - 省市区三级联动选择器 * * 特性: * - 纯 React Native 实现,无需额外原生依赖 * - 支持省市区三级联动 * - 底部弹窗交互 * - 支持默认选中 * - FlatList 滚轮选择,高性能 * - 数据由外部传入,组件不包含 mock 数据 */ declare const DbCityPicker: any; export default DbCityPicker; export type { DbCityPickerProps, DbCityPickerRef, SelectedCity, CityArea } from './DbCityPicker.types';