import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { Ack } from '../types'; export type AckRetrieveParams = { /** * * @type { string } * @memberof AckRetrieveApi */ ruleId: string; options?: AxiosRequestConfig; }; export type AckRetrieveReturnType = Ack; /** * Display who disabled a rule in this account, when, and their justification for disabling it. * @summary Display a specific acknowledgement (disabling) of a rule * @param {AckRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ackRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([AckRetrieveParams] | [string, AxiosRequestConfig])) => Promise>; export default ackRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map