import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { HostAck } from '../types'; export type HostackRetrieveParams = { /** * A unique integer value identifying this host ack. * @type { number } * @memberof HostackRetrieveApi */ id: number; options?: AxiosRequestConfig; }; export type HostackRetrieveReturnType = HostAck; /** * Display who disabled a rule on a system, when, and their justification for disabling it. Host acks are selected by their ID number. * @summary Display a specific acknowledgement (disabling) of a rule on a system * @param {HostackRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const hostackRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([HostackRetrieveParams] | [number, AxiosRequestConfig])) => Promise>; export default hostackRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map