import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { DisabledRules } from '../types'; export type DisabledRulesRetrieveParams = { /** * * @type { string } * @memberof DisabledRulesRetrieveApi */ ruleId: string; options?: AxiosRequestConfig; }; export type DisabledRulesRetrieveReturnType = DisabledRules; /** * Get the detail on whether the given rule is disabled, and the scope, by rule_id. A 404 only means that the rule is not disabled - it may also not exist. The account-wide scope will be returned first, if the rule has both an account-wide and a system-specific acknowledgement. * @param {DisabledRulesRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const disabledRulesRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([DisabledRulesRetrieveParams] | [string, AxiosRequestConfig])) => Promise>; export default disabledRulesRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map