import { type FeatureCollection } from 'geojson';
interface ImageData {
    layer: string;
    data: string;
    points: [][];
}
interface GeoAnchorPoint {
    x: number;
    y: number;
    lat: number;
    lng: number;
}
interface FpGeoProperties {
    config?: {
        p0: GeoAnchorPoint;
        p1?: GeoAnchorPoint;
        p2: GeoAnchorPoint;
        bearing?: number;
        snapThreshold?: number;
    };
    mpViewbox?: number[];
    useMaplibre?: boolean;
    [key: string]: unknown;
}
interface ExtendFeatureCollection extends FeatureCollection {
    properties: FpGeoProperties;
    images: ImageData[];
}
export declare const fpGeo: ExtendFeatureCollection;
export {};
//# sourceMappingURL=fpGeo.d.ts.map