import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { ResolutionsBatchInput, ResolutionsBatchValue } from '../types'; export type GetResolutionsForIssuesParams = { /** * * @type { ResolutionsBatchInput } * @memberof GetResolutionsForIssuesApi */ resolutionsBatchInput: ResolutionsBatchInput; options?: AxiosRequestConfig; }; export type GetResolutionsForIssuesReturnType = { [key: string]: ResolutionsBatchValue; }; /** * Provides information about resolutions available for the given issues * @summary Resolution metadata (batch) * @param {GetResolutionsForIssuesParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const getResolutionsForIssuesParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([GetResolutionsForIssuesParams] | [ResolutionsBatchInput, AxiosRequestConfig])) => Promise>; export default getResolutionsForIssuesParamCreator; //# sourceMappingURL=index.d.ts.map