import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { HostAck, HostAckInput } from '../types'; export type HostackCreateParams = { /** * * @type { HostAckInput } * @memberof HostackCreateApi */ hostAckInput: HostAckInput; options?: AxiosRequestConfig; }; export type HostackCreateReturnType = HostAck; /** * Add an acknowledgement for a rule, by rule ID, system, and account. Return the new hostack. If there\'s already an acknowledgement of this rule by this account for a system, then return that. This does not take an \'id\' number. * @param {HostackCreateParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const hostackCreateParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([HostackCreateParams] | [HostAckInput, AxiosRequestConfig])) => Promise>; export default hostackCreateParamCreator; //# sourceMappingURL=index.d.ts.map