import React from "react"; import type { EventChatLocationState } from "./FormChatAssistant.types"; export interface EventChatLocationPickerProps { value?: EventChatLocationState; isTerreiroAddressEmpty?: boolean; isLoading?: boolean; onConfirm: (location: EventChatLocationState) => void; zIndex?: number; defaultOpen?: boolean; } declare const EventChatLocationPicker: React.FC; export default EventChatLocationPicker;