import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { PaginatedRuleRatingList } from '../types'; export type RatingListParams = { /** * Number of results to return per page. * @type { number } * @memberof RatingListApi */ limit?: number; /** * The initial index from which to return the results. * @type { number } * @memberof RatingListApi */ offset?: number; options?: AxiosRequestConfig; }; export type RatingListReturnType = PaginatedRuleRatingList; /** * List all rules rated by the current user Only the current user\'s ratings are listed here. * @param {RatingListParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const ratingListParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([RatingListParams] | [number, number, AxiosRequestConfig])) => Promise>; export default ratingListParamCreator; //# sourceMappingURL=index.d.ts.map