import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { RuleCategory } from '../types'; export type RulecategoryRetrieveParams = { /** * A unique integer value identifying this rule category. * @type { number } * @memberof RulecategoryRetrieveApi */ id: number; options?: AxiosRequestConfig; }; export type RulecategoryRetrieveReturnType = RuleCategory; /** * Rules are divided into categories, the usual being Availability, Stability, Security and Performance. Categories are listed in decreasing order of importance. * @param {RulecategoryRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const rulecategoryRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([RulecategoryRetrieveParams] | [number, AxiosRequestConfig])) => Promise>; export default rulecategoryRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map