import type { Logger } from '@sap-ux/logger'; import { Axios } from 'axios'; import type { Service } from 'base/service-provider'; /** * The service implements a request for getting the UI5 framework version on ABAP system * with the bootstrap api. */ export declare class UI5VersionService extends Axios implements Service { /** * The base endpoint path used by this service for requests. */ static readonly PATH: string; /** * Instance of the logger. */ log: Logger; /** * The method returns a valid version of the UI5 framework on the ABAP system * or throws an error if the version is not provided, malformed or there are * connectivity issues or server errors. * * @returns The UI5 version on the ABAP system. */ getUI5Version(): Promise; } //# sourceMappingURL=ui5-version-service.d.ts.map