export declare type FeatureCollection = { type: 'FeatureCollection'; features: Feature[]; }; export declare type Feature = { type: 'Feature'; properties: Record; geometry: Geometry; id: string; }; export declare type Geometry = { type: 'Polygon'; coordinates: Array>>; }; export declare type GeofenceCollectionParams = { CollectionName: string; Entries: GeofenceParams[]; }; export declare type GeofenceParams = { GeofenceId: string; Geometry: { Polygon: Array>>; }; }; export declare type ImportParams = { collectionToImport: string; identifierField: string; identifierType: IdentifierOption; geoJSONObj: FeatureCollection; }; export declare enum IdentifierOption { RootLevelID = "RootLevelID", CustomProperty = "CustomProperty" } export declare type IdentifierInfo = { identifierType: IdentifierOption; identifierField: string; }; //# sourceMappingURL=importParams.d.ts.map