import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { PaginatedJustificationCountList } from '../types'; export type RuleJustificationsListParams = { /** * * @type { string } * @memberof RuleJustificationsListApi */ ruleId: string; /** * Number of results to return per page. * @type { number } * @memberof RuleJustificationsListApi */ limit?: number; /** * The initial index from which to return the results. * @type { number } * @memberof RuleJustificationsListApi */ offset?: number; options?: AxiosRequestConfig; }; export type RuleJustificationsListReturnType = PaginatedJustificationCountList; /** * List all justifications given for disabling this rule. This is an **internal-only** view that allows us to provide feedback on why rules are disabled by our customers. It lists the justifications given in both account-wide acks and host-specific acks of a rule. * @param {RuleJustificationsListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ruleJustificationsListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([RuleJustificationsListParams] | [string, number, number, AxiosRequestConfig])) => Promise>; export default ruleJustificationsListParamCreator; //# sourceMappingURL=index.d.ts.map