import { Location } from '../../../GoogleMap.types'; import { Link } from '@wix/editor-react-types'; export type StatusIndicatorType = 'loading' | 'success' | 'error' | undefined; export interface LocationFormData { title: string; linkTitle: string; description: string; address: string; longitude: number | undefined; latitude: number | undefined; locationLinkAttributes: Link | undefined; geocodingStatus: StatusIndicatorType; geocodingStatusMessage?: string; } interface GetLocationFormDataOptions { preserveGeocodingStatus?: boolean; currentGeocodingStatus?: StatusIndicatorType; } export declare const DEFAULT_LINK_TITLE = "Wix"; export declare function getLocationFormData(editingLocation: Location | undefined, options?: GetLocationFormDataOptions): LocationFormData; export {};