import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { PaginatedAllRuleRatingsList } from '../types'; export type RatingAllRatingsListParams = { /** * Number of results to return per page. * @type { number } * @memberof RatingAllRatingsListApi */ limit?: number; /** * The initial index from which to return the results. * @type { number } * @memberof RatingAllRatingsListApi */ offset?: number; options?: AxiosRequestConfig; }; export type RatingAllRatingsListReturnType = PaginatedAllRuleRatingsList; /** * Show all ratings. Available only to internal users. * @param {RatingAllRatingsListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ratingAllRatingsListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([RatingAllRatingsListParams] | [number, number, AxiosRequestConfig])) => Promise>; export default ratingAllRatingsListParamCreator; //# sourceMappingURL=index.d.ts.map