import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { RuleUsageStats } from '../types'; export type RuleStatsRetrieveParams = { /** * * @type { string } * @memberof RuleStatsRetrieveApi */ ruleId: string; options?: AxiosRequestConfig; }; export type RuleStatsRetrieveReturnType = RuleUsageStats; /** * Display usage and impact statistics for this rule. For internal use only. This allows rule developers to see the number of systems and accounts impacted by a rule. * @param {RuleStatsRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ruleStatsRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([RuleStatsRetrieveParams] | [string, AxiosRequestConfig])) => Promise>; export default ruleStatsRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map