import type { PropType } from 'vue'; export type PlaceTypes = 'address' | 'geocode' | 'establishment' | '(regions)' | '(cities)'; export interface Address { city: string; code: string; country: string; latitude: number; line1: string; line2: string; locality: string; longitude: number; name: string; number: string; state: string; street: string; } interface PlaceResult { formatted_address?: string; name?: string; geometry?: { location: { lat: () => number; lng: () => number; }; }; address_components?: AddressComponent[]; } interface AddressComponent { short_name: string; types: string[]; } declare const __VLS_export: import("vue").DefineComponent; default: string; }; countries: { type: PropType; default: () => never[]; }; placeholder: { type: StringConstructor; default: string; }; disabled: { type: BooleanConstructor; default: boolean; }; modelValue: { type: PropType; }; }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: string) => any; } & { error: (place: PlaceResult) => any; search: (args: Address) => any; }, string, import("vue").PublicProps, Readonly; default: string; }; countries: { type: PropType; default: () => never[]; }; placeholder: { type: StringConstructor; default: string; }; disabled: { type: BooleanConstructor; default: boolean; }; modelValue: { type: PropType; }; }>> & Readonly<{ onError?: ((place: PlaceResult) => any) | undefined; onSearch?: ((args: Address) => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { mode: PlaceTypes; disabled: boolean; placeholder: string; countries: string[]; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; declare const _default: typeof __VLS_export; export default _default;