/**
 * Properties for a map marker
 */
export declare class Properties {
    readonly name: string;
    readonly id: number;
    readonly icon: string;
    readonly thumbnail: string;
    readonly type: string;
    readonly slug: string;
    constructor(data: any);
}
/**
 * Geometry information for a map marker
 */
export declare class Geometry {
    readonly type: string;
    readonly coordinates: number[];
    constructor(data: any);
}
/**
 * A feature on the map
 */
export declare class Feature {
    readonly type: string;
    readonly geometry: Geometry;
    readonly properties: Properties;
    constructor(data: any);
}
/**
 * Collection of map markers
 */
export declare class Markers {
    readonly type: string;
    readonly features: Feature[];
    constructor(data: any);
}
