export declare const Area: import("vue").DefineComponent<{ fullLocation: { type: StringConstructor; default: string; }; placeholder: { type: StringConstructor; default: string; }; }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { change: (val: { provinceCode: string; provinceName: string; cityCode: string; cityName: string; countyCode: string; countyName: string; fullLocation: string; }) => true; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { onChange?: ((val: { provinceCode: string; provinceName: string; cityCode: string; cityName: string; countyCode: string; countyName: string; fullLocation: string; }) => any) | undefined; }, { fullLocation: string; placeholder: string; }, {}>; export type { AreaProps, AreaResult } from './Area'; declare module 'vue' { interface GlobalComponents { ErArea: typeof Area; } }