import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { Resolutions } from '../types'; export type GetResolutionsForIssueParams = { /** * Issue identifier (e.g. `advisor:CVE_2017_6074_kernel|KERNEL_CVE_2017_6074`) * @type { string } * @memberof GetResolutionsForIssueApi */ issue: string; options?: AxiosRequestConfig; }; export type GetResolutionsForIssueReturnType = Resolutions; /** * Provides information about resolutions available for the given issue * @summary Resolution metadata * @param {GetResolutionsForIssueParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const getResolutionsForIssueParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([GetResolutionsForIssueParams] | [string, AxiosRequestConfig])) => Promise>; export default getResolutionsForIssueParamCreator; //# sourceMappingURL=index.d.ts.map