export declare class Point {
    readonly type: string;
    readonly coordinates: number[];
    constructor(type: string, coordinates: number[]);
}
