import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; export type StatusLiveRetrieveParams = { options?: AxiosRequestConfig; }; export type StatusLiveRetrieveReturnType = void; /** * Is the Advisor API live and serving requests? This returns a dictionary with properties defining the status of the components Advisor relies on. At the moment this is the same as the Readiness check (see `/ready/`). In the future it may include other checks if we need to, but the properties of `/ready/` will always be included. * @param {StatusLiveRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const statusLiveRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([StatusLiveRetrieveParams] | [AxiosRequestConfig])) => Promise>; export default statusLiveRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map