/**
 *  Place: a Point subclass representing a 'place' that can be rendered on the
 *  map. A place is a point *other* than a transit stop/station, e.g. a home/work
 *  location, a point of interest, etc.
 */
export default class Place extends Point {
    /**
     *  the constructor
     */
    constructor(data: any);
    worldX: any;
    worldY: any;
    getRenderDataArray(): any[];
    renderXY: {
        x: any;
        y: any;
    } | undefined;
    markerBBox: {
        height: number;
        width: number;
        x: number;
        y: number;
    } | undefined;
}
import Point from "./point";
