import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { Kcs } from '../types'; export type KcsListParams = { /** * Display the rule urls for the given list of comma separated KCS solution node_ids * @type { Array } * @memberof KcsListApi */ nodeIds?: Array; options?: AxiosRequestConfig; }; export type KcsListReturnType = Array; /** * Looks for all active rules with KCS solutions Returns a list of dicts of the C.R.C rule URL and its KCS solution number * @param {KcsListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const kcsListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([KcsListParams] | [Array, AxiosRequestConfig])) => Promise>; export default kcsListParamCreator; //# sourceMappingURL=index.d.ts.map