import React from "react"; import type { EventFormValues, EventOnboardingValidationErrors } from "../EventOnboarding.types"; export interface EventLocationStepProps { formState: EventFormValues; isTerreiroAddressEmpty?: boolean; enableGoogleAddress?: boolean; googleMapsApiKey?: string; googleCountryCode?: string; googleLanguage?: string; validationErrors: EventOnboardingValidationErrors; onChange: (e: React.ChangeEvent | { target: { name: string; value: any; type: string; checked?: boolean; }; }) => void; knownLocations?: string[]; } declare const EventLocationStep: React.FC; export default EventLocationStep;