import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { RuleForAccount } from '../types'; export type RuleRetrieveParams = { /** * * @type { string } * @memberof RuleRetrieveApi */ ruleId: string; /** * List of Inventory host group names * @type { Array } * @memberof RuleRetrieveApi */ groups?: Array; /** * Tags have a namespace, key and value in the form namespace/key=value * @type { Array } * @memberof RuleRetrieveApi */ tags?: Array; options?: AxiosRequestConfig; }; export type RuleRetrieveReturnType = RuleForAccount; /** * Retrieve a single rule and its associated details. This includes the account-relevant details such as number of impacted systems and host acknowledgements. * @param {RuleRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ruleRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([RuleRetrieveParams] | [string, Array, Array, AxiosRequestConfig])) => Promise>; export default ruleRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map