import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { Stats } from '../types'; export type StatsOverviewRetrieveParams = { /** * Tags have a namespace, key and value in the form namespace/key=value * @type { Array } * @memberof StatsOverviewRetrieveApi */ tags?: Array; /** * List of Inventory host group names * @type { Array } * @memberof StatsOverviewRetrieveApi */ groups?: Array; /** * Is this a SAP system? * @type { boolean } * @memberof StatsOverviewRetrieveApi */ filterSystemProfileSapSystem?: boolean; /** * Are there systems which contain these SAP SIDs? * @type { Array } * @memberof StatsOverviewRetrieveApi */ filterSystemProfileSapSidsContains?: Array; options?: AxiosRequestConfig; }; export type StatsOverviewRetrieveReturnType = Stats; /** * Show overview statistics for this user This gives the number of pathways, and incident, critical and important recommendations, affecting systems that the user can see. * @param {StatsOverviewRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const statsOverviewRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([StatsOverviewRetrieveParams] | [Array, Array, boolean, Array, AxiosRequestConfig])) => Promise>; export default statsOverviewRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map