import { ODataService } from "@sap/service-provider-apis"; import { ConsumptionBundle } from "./consumptionBundle"; import { PartOfConsumptionBundles, RawService, UclServiceRetrieverInterface } from "./interfaces"; export declare class UclProviderService extends ODataService { readonly ordId: string; readonly description: string; readonly uclServiceRetriever: UclServiceRetrieverInterface; readonly xmlMetadataUrl: string; readonly jsonMetadataUrl: string; readonly version: string; readonly releaseStatus: string; readonly defaultBundle: ConsumptionBundle; readonly consumptionBundles: ConsumptionBundle[]; constructor(rawService: RawService, uclServiceRetriever: UclServiceRetrieverInterface); findDefaultBundle(partOfConsumptionBundles: PartOfConsumptionBundles[]): ConsumptionBundle | undefined; getRelativeUrl(): string; }