import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { AckCount } from '../types'; export type AckcountListParams = { options?: AxiosRequestConfig; }; export type AckcountListReturnType = Array; /** * Get the ack counts for all active rules Return a list of rule_ids and their ack counts * @param {AckcountListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ackcountListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([AckcountListParams] | [AxiosRequestConfig])) => Promise>; export default ackcountListParamCreator; //# sourceMappingURL=index.d.ts.map