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