import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { Ack, AckJustification } from '../types'; export type AckUpdateParams = { /** * * @type { string } * @memberof AckUpdateApi */ ruleId: string; /** * * @type { AckJustification } * @memberof AckUpdateApi */ ackJustification?: AckJustification; options?: AxiosRequestConfig; }; export type AckUpdateReturnType = Ack; /** * Update an acknowledgement for a rule, by rule ID. A new justification can be supplied. The username is taken from the authenticated request. The updated ack is returned. * @param {AckUpdateParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ackUpdateParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([AckUpdateParams] | [string, AckJustification, AxiosRequestConfig])) => Promise>; export default ackUpdateParamCreator; //# sourceMappingURL=index.d.ts.map