import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { PaginatedDisabledRulesList } from '../types'; export type DisabledRulesListParams = { /** * Number of results to return per page. * @type { number } * @memberof DisabledRulesListApi */ limit?: number; /** * The initial index from which to return the results. * @type { number } * @memberof DisabledRulesListApi */ offset?: number; options?: AxiosRequestConfig; }; export type DisabledRulesListReturnType = PaginatedDisabledRulesList; /** * Shows a list of rules that are disabled, either organisation-wide (Ack) or system-specific (HostAck). The status flag indicates which of these causes this rule to be disabled. To find which systems have disabled a rule, use the \'rule_id\' query parameter in the hostack/ endpoint. * @param {DisabledRulesListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const disabledRulesListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([DisabledRulesListParams] | [number, number, AxiosRequestConfig])) => Promise>; export default disabledRulesListParamCreator; //# sourceMappingURL=index.d.ts.map