import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { AckCount } from '../types'; export type AckcountRetrieveParams = { /** * * @type { string } * @memberof AckcountRetrieveApi */ ruleId: string; options?: AxiosRequestConfig; }; export type AckcountRetrieveReturnType = AckCount; /** * Get the ack count for the given rule_id Returns the rule_id and its ack count * @param {AckcountRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ackcountRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([AckcountRetrieveParams] | [string, AxiosRequestConfig])) => Promise>; export default ackcountRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map