import type { AxiosRequestConfig } from 'axios'; import { BaseAPI } from '@redhat-cloud-services/javascript-clients-shared/dist/base'; import type { Topic } from '../types'; export type TopicRetrieveParams = { /** * * @type { string } * @memberof TopicRetrieveApi */ slug: string; options?: AxiosRequestConfig; }; export type TopicRetrieveReturnType = Topic; /** * Retrieve a single topic by slug. This also lists the topic\'s impacted systems count. * @param {TopicRetrieveParams} config with all available params. * @param {*} [options] Override http request option. * @throws {RequiredError} */ export declare const topicRetrieveParamCreator: (sendRequest: BaseAPI["sendRequest"], ...config: ([TopicRetrieveParams] | [string, AxiosRequestConfig])) => Promise>; export default topicRetrieveParamCreator; //# sourceMappingURL=index.d.ts.map