import type { EventFormValues } from "../EventOnboarding.types"; type EventLocation = EventFormValues["location"]; type EventGooglePlaceDetailsInput = { address_components?: Array<{ long_name: string; short_name: string; types: string[]; }>; formatted_address?: string; }; export declare const mapGooglePlaceToEventLocation: (place: EventGooglePlaceDetailsInput) => Pick; export {};