import type { ComponentPublicInstance } from 'vue'; import type { AreaProps } from './Area'; export declare type AreaList = { city_list: Record; county_list: Record; province_list: Record; }; export declare type AreaColumnOption = { name: string; code: string; }; export declare type AreaColumnType = 'province' | 'county' | 'city'; export declare type AreaExpose = { reset: (newCode?: string) => void; getArea: () => { code: string; country: string; province: string; city: string; county: string; }; getValues: () => AreaColumnOption[]; }; export declare type AreaInstance = ComponentPublicInstance;