import { type IOrganizationGeoCollectionsService } from "@gooddata/sdk-backend-spi"; import { type IGeoCollection, type IGeoCollectionDefinition, type IGeoCollectionFileUploadResult } from "@gooddata/sdk-model"; import { type TigerAuthenticatedCallGuard } from "../../types/index.js"; export declare class OrganizationGeoCollectionsService implements IOrganizationGeoCollectionsService { readonly authCall: TigerAuthenticatedCallGuard; constructor(authCall: TigerAuthenticatedCallGuard); getAll(): Promise; getGeoCollection(id: string): Promise; createGeoCollection(definition: IGeoCollectionDefinition): Promise; updateGeoCollection(geoCollection: IGeoCollection): Promise; deleteGeoCollection(id: string): Promise; uploadGeoCollectionFile(file: File): Promise; convertGeoCollectionFile(location: string): Promise; importGeoCollectionFile(collectionId: string, location: string): Promise; } //# sourceMappingURL=geoCollections.d.ts.map