import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; export type HostackDestroyParams = { /** * A unique integer value identifying this host ack. * @type { number } * @memberof HostackDestroyApi */ id: number; options?: AxiosRequestConfig; }; export type HostackDestroyReturnType = string; /** * Delete an acknowledgement for a rule, for a system, for an account, by its ID. Takes the hostack ID (given in the hostack list) as an identifier. * @param {HostackDestroyParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const hostackDestroyParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([HostackDestroyParams] | [number, AxiosRequestConfig])) => Promise>; export default hostackDestroyParamCreator; //# sourceMappingURL=index.d.ts.map