import { SCEventLocationType, SCEventType } from '@selfcommunity/types';
import { Geolocation } from './types';
export interface EventAddressProps {
    locations?: SCEventLocationType[];
    event?: SCEventType | Partial<SCEventType>;
    forwardGeolocationData: (data: Geolocation) => void;
    forwardLivestreamSettingsData: (settings: any) => void;
    className?: string;
}
export default function EventAddress(inProps: EventAddressProps): JSX.Element;
