export declare const geoPointJsonSchema: { type: string; properties: { lat: { type: string; }; lng: { type: string; }; }; }; export declare const BasicTypes: { array: string; boolean: string; number: string; null: string; object: string; string: string; url: string; }; export type RekolaGeoPoint = { lat: number; lng: number; };