import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { PaginatedAckList } from '../types'; export type AckListParams = { /** * Number of results to return per page. * @type { number } * @memberof AckListApi */ limit?: number; /** * The initial index from which to return the results. * @type { number } * @memberof AckListApi */ offset?: number; options?: AxiosRequestConfig; }; export type AckListReturnType = PaginatedAckList; /** * Display the list of rules that have been disabled or acknowledged in this account, along with who disabled them and their justification. * @summary List the rules that have been acknowledged (disabled) * @param {AckListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ackListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([AckListParams] | [number, number, AxiosRequestConfig])) => Promise>; export default ackListParamCreator; //# sourceMappingURL=index.d.ts.map