import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { Ack, AckInput } from '../types'; export type AckCreateParams = { /** * * @type { AckInput } * @memberof AckCreateApi */ ackInput: AckInput; options?: AxiosRequestConfig; }; export type AckCreateReturnType = Ack; /** * Add an acknowledgement for a rule, by rule ID. If there\'s already an acknowledgement of this rule by this accounts org_id, then return that. Otherwise, a new ack is created. * @param {AckCreateParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ackCreateParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([AckCreateParams] | [AckInput, AxiosRequestConfig])) => Promise>; export default ackCreateParamCreator; //# sourceMappingURL=index.d.ts.map