import { Point } from "typeorm";
import { VentureEventData } from "./venture-event.data";
export declare class EventLocationData {
    id: string;
    location?: Point;
    description?: string;
    event?: VentureEventData;
}
