import { Point } from "geojson";
import { VentureData } from "./venture.data";
export declare class VentureLocationData {
    id: string;
    location: Point;
    description?: string;
    createdAt: Date;
    updatedAt: Date;
    Venture?: VentureData;
}
