import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { System } from '../types'; export type SystemRetrieveParams = { /** * A UUID string identifying this inventory host. * @type { string } * @memberof SystemRetrieveApi */ uuid: string; options?: AxiosRequestConfig; }; export type SystemRetrieveReturnType = System; /** * Retrieve the reports for a single system by Insights Inventory UUID * @summary Retrieve the reports for a single system * @param {SystemRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const systemRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([SystemRetrieveParams] | [string, AxiosRequestConfig])) => Promise>; export default systemRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map