import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types"; import { type CreateAssistantAssociationCommandInput, type CreateAssistantAssociationCommandOutput } from "./commands/CreateAssistantAssociationCommand"; import { type CreateAssistantCommandInput, type CreateAssistantCommandOutput } from "./commands/CreateAssistantCommand"; import { type CreateContentCommandInput, type CreateContentCommandOutput } from "./commands/CreateContentCommand"; import { type CreateKnowledgeBaseCommandInput, type CreateKnowledgeBaseCommandOutput } from "./commands/CreateKnowledgeBaseCommand"; import { type CreateQuickResponseCommandInput, type CreateQuickResponseCommandOutput } from "./commands/CreateQuickResponseCommand"; import { type CreateSessionCommandInput, type CreateSessionCommandOutput } from "./commands/CreateSessionCommand"; import { type DeleteAssistantAssociationCommandInput, type DeleteAssistantAssociationCommandOutput } from "./commands/DeleteAssistantAssociationCommand"; import { type DeleteAssistantCommandInput, type DeleteAssistantCommandOutput } from "./commands/DeleteAssistantCommand"; import { type DeleteContentCommandInput, type DeleteContentCommandOutput } from "./commands/DeleteContentCommand"; import { type DeleteImportJobCommandInput, type DeleteImportJobCommandOutput } from "./commands/DeleteImportJobCommand"; import { type DeleteKnowledgeBaseCommandInput, type DeleteKnowledgeBaseCommandOutput } from "./commands/DeleteKnowledgeBaseCommand"; import { type DeleteQuickResponseCommandInput, type DeleteQuickResponseCommandOutput } from "./commands/DeleteQuickResponseCommand"; import { type GetAssistantAssociationCommandInput, type GetAssistantAssociationCommandOutput } from "./commands/GetAssistantAssociationCommand"; import { type GetAssistantCommandInput, type GetAssistantCommandOutput } from "./commands/GetAssistantCommand"; import { type GetContentCommandInput, type GetContentCommandOutput } from "./commands/GetContentCommand"; import { type GetContentSummaryCommandInput, type GetContentSummaryCommandOutput } from "./commands/GetContentSummaryCommand"; import { type GetImportJobCommandInput, type GetImportJobCommandOutput } from "./commands/GetImportJobCommand"; import { type GetKnowledgeBaseCommandInput, type GetKnowledgeBaseCommandOutput } from "./commands/GetKnowledgeBaseCommand"; import { type GetQuickResponseCommandInput, type GetQuickResponseCommandOutput } from "./commands/GetQuickResponseCommand"; import { type GetRecommendationsCommandInput, type GetRecommendationsCommandOutput } from "./commands/GetRecommendationsCommand"; import { type GetSessionCommandInput, type GetSessionCommandOutput } from "./commands/GetSessionCommand"; import { type ListAssistantAssociationsCommandInput, type ListAssistantAssociationsCommandOutput } from "./commands/ListAssistantAssociationsCommand"; import { type ListAssistantsCommandInput, type ListAssistantsCommandOutput } from "./commands/ListAssistantsCommand"; import { type ListContentsCommandInput, type ListContentsCommandOutput } from "./commands/ListContentsCommand"; import { type ListImportJobsCommandInput, type ListImportJobsCommandOutput } from "./commands/ListImportJobsCommand"; import { type ListKnowledgeBasesCommandInput, type ListKnowledgeBasesCommandOutput } from "./commands/ListKnowledgeBasesCommand"; import { type ListQuickResponsesCommandInput, type ListQuickResponsesCommandOutput } from "./commands/ListQuickResponsesCommand"; import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand"; import { type NotifyRecommendationsReceivedCommandInput, type NotifyRecommendationsReceivedCommandOutput } from "./commands/NotifyRecommendationsReceivedCommand"; import { type QueryAssistantCommandInput, type QueryAssistantCommandOutput } from "./commands/QueryAssistantCommand"; import { type RemoveKnowledgeBaseTemplateUriCommandInput, type RemoveKnowledgeBaseTemplateUriCommandOutput } from "./commands/RemoveKnowledgeBaseTemplateUriCommand"; import { type SearchContentCommandInput, type SearchContentCommandOutput } from "./commands/SearchContentCommand"; import { type SearchQuickResponsesCommandInput, type SearchQuickResponsesCommandOutput } from "./commands/SearchQuickResponsesCommand"; import { type SearchSessionsCommandInput, type SearchSessionsCommandOutput } from "./commands/SearchSessionsCommand"; import { type StartContentUploadCommandInput, type StartContentUploadCommandOutput } from "./commands/StartContentUploadCommand"; import { type StartImportJobCommandInput, type StartImportJobCommandOutput } from "./commands/StartImportJobCommand"; import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand"; import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand"; import { type UpdateContentCommandInput, type UpdateContentCommandOutput } from "./commands/UpdateContentCommand"; import { type UpdateKnowledgeBaseTemplateUriCommandInput, type UpdateKnowledgeBaseTemplateUriCommandOutput } from "./commands/UpdateKnowledgeBaseTemplateUriCommand"; import { type UpdateQuickResponseCommandInput, type UpdateQuickResponseCommandOutput } from "./commands/UpdateQuickResponseCommand"; import { WisdomClient } from "./WisdomClient"; export interface Wisdom { /** * @see {@link CreateAssistantCommand} */ createAssistant(args: CreateAssistantCommandInput, options?: __HttpHandlerOptions): Promise; createAssistant(args: CreateAssistantCommandInput, cb: (err: any, data?: CreateAssistantCommandOutput) => void): void; createAssistant(args: CreateAssistantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssistantCommandOutput) => void): void; /** * @see {@link CreateAssistantAssociationCommand} */ createAssistantAssociation(args: CreateAssistantAssociationCommandInput, options?: __HttpHandlerOptions): Promise; createAssistantAssociation(args: CreateAssistantAssociationCommandInput, cb: (err: any, data?: CreateAssistantAssociationCommandOutput) => void): void; createAssistantAssociation(args: CreateAssistantAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAssistantAssociationCommandOutput) => void): void; /** * @see {@link CreateContentCommand} */ createContent(args: CreateContentCommandInput, options?: __HttpHandlerOptions): Promise; createContent(args: CreateContentCommandInput, cb: (err: any, data?: CreateContentCommandOutput) => void): void; createContent(args: CreateContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContentCommandOutput) => void): void; /** * @see {@link CreateKnowledgeBaseCommand} */ createKnowledgeBase(args: CreateKnowledgeBaseCommandInput, options?: __HttpHandlerOptions): Promise; createKnowledgeBase(args: CreateKnowledgeBaseCommandInput, cb: (err: any, data?: CreateKnowledgeBaseCommandOutput) => void): void; createKnowledgeBase(args: CreateKnowledgeBaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateKnowledgeBaseCommandOutput) => void): void; /** * @see {@link CreateQuickResponseCommand} */ createQuickResponse(args: CreateQuickResponseCommandInput, options?: __HttpHandlerOptions): Promise; createQuickResponse(args: CreateQuickResponseCommandInput, cb: (err: any, data?: CreateQuickResponseCommandOutput) => void): void; createQuickResponse(args: CreateQuickResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateQuickResponseCommandOutput) => void): void; /** * @see {@link CreateSessionCommand} */ createSession(args: CreateSessionCommandInput, options?: __HttpHandlerOptions): Promise; createSession(args: CreateSessionCommandInput, cb: (err: any, data?: CreateSessionCommandOutput) => void): void; createSession(args: CreateSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSessionCommandOutput) => void): void; /** * @see {@link DeleteAssistantCommand} */ deleteAssistant(args: DeleteAssistantCommandInput, options?: __HttpHandlerOptions): Promise; deleteAssistant(args: DeleteAssistantCommandInput, cb: (err: any, data?: DeleteAssistantCommandOutput) => void): void; deleteAssistant(args: DeleteAssistantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssistantCommandOutput) => void): void; /** * @see {@link DeleteAssistantAssociationCommand} */ deleteAssistantAssociation(args: DeleteAssistantAssociationCommandInput, options?: __HttpHandlerOptions): Promise; deleteAssistantAssociation(args: DeleteAssistantAssociationCommandInput, cb: (err: any, data?: DeleteAssistantAssociationCommandOutput) => void): void; deleteAssistantAssociation(args: DeleteAssistantAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAssistantAssociationCommandOutput) => void): void; /** * @see {@link DeleteContentCommand} */ deleteContent(args: DeleteContentCommandInput, options?: __HttpHandlerOptions): Promise; deleteContent(args: DeleteContentCommandInput, cb: (err: any, data?: DeleteContentCommandOutput) => void): void; deleteContent(args: DeleteContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContentCommandOutput) => void): void; /** * @see {@link DeleteImportJobCommand} */ deleteImportJob(args: DeleteImportJobCommandInput, options?: __HttpHandlerOptions): Promise; deleteImportJob(args: DeleteImportJobCommandInput, cb: (err: any, data?: DeleteImportJobCommandOutput) => void): void; deleteImportJob(args: DeleteImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteImportJobCommandOutput) => void): void; /** * @see {@link DeleteKnowledgeBaseCommand} */ deleteKnowledgeBase(args: DeleteKnowledgeBaseCommandInput, options?: __HttpHandlerOptions): Promise; deleteKnowledgeBase(args: DeleteKnowledgeBaseCommandInput, cb: (err: any, data?: DeleteKnowledgeBaseCommandOutput) => void): void; deleteKnowledgeBase(args: DeleteKnowledgeBaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteKnowledgeBaseCommandOutput) => void): void; /** * @see {@link DeleteQuickResponseCommand} */ deleteQuickResponse(args: DeleteQuickResponseCommandInput, options?: __HttpHandlerOptions): Promise; deleteQuickResponse(args: DeleteQuickResponseCommandInput, cb: (err: any, data?: DeleteQuickResponseCommandOutput) => void): void; deleteQuickResponse(args: DeleteQuickResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteQuickResponseCommandOutput) => void): void; /** * @see {@link GetAssistantCommand} */ getAssistant(args: GetAssistantCommandInput, options?: __HttpHandlerOptions): Promise; getAssistant(args: GetAssistantCommandInput, cb: (err: any, data?: GetAssistantCommandOutput) => void): void; getAssistant(args: GetAssistantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssistantCommandOutput) => void): void; /** * @see {@link GetAssistantAssociationCommand} */ getAssistantAssociation(args: GetAssistantAssociationCommandInput, options?: __HttpHandlerOptions): Promise; getAssistantAssociation(args: GetAssistantAssociationCommandInput, cb: (err: any, data?: GetAssistantAssociationCommandOutput) => void): void; getAssistantAssociation(args: GetAssistantAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssistantAssociationCommandOutput) => void): void; /** * @see {@link GetContentCommand} */ getContent(args: GetContentCommandInput, options?: __HttpHandlerOptions): Promise; getContent(args: GetContentCommandInput, cb: (err: any, data?: GetContentCommandOutput) => void): void; getContent(args: GetContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContentCommandOutput) => void): void; /** * @see {@link GetContentSummaryCommand} */ getContentSummary(args: GetContentSummaryCommandInput, options?: __HttpHandlerOptions): Promise; getContentSummary(args: GetContentSummaryCommandInput, cb: (err: any, data?: GetContentSummaryCommandOutput) => void): void; getContentSummary(args: GetContentSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContentSummaryCommandOutput) => void): void; /** * @see {@link GetImportJobCommand} */ getImportJob(args: GetImportJobCommandInput, options?: __HttpHandlerOptions): Promise; getImportJob(args: GetImportJobCommandInput, cb: (err: any, data?: GetImportJobCommandOutput) => void): void; getImportJob(args: GetImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetImportJobCommandOutput) => void): void; /** * @see {@link GetKnowledgeBaseCommand} */ getKnowledgeBase(args: GetKnowledgeBaseCommandInput, options?: __HttpHandlerOptions): Promise; getKnowledgeBase(args: GetKnowledgeBaseCommandInput, cb: (err: any, data?: GetKnowledgeBaseCommandOutput) => void): void; getKnowledgeBase(args: GetKnowledgeBaseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetKnowledgeBaseCommandOutput) => void): void; /** * @see {@link GetQuickResponseCommand} */ getQuickResponse(args: GetQuickResponseCommandInput, options?: __HttpHandlerOptions): Promise; getQuickResponse(args: GetQuickResponseCommandInput, cb: (err: any, data?: GetQuickResponseCommandOutput) => void): void; getQuickResponse(args: GetQuickResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetQuickResponseCommandOutput) => void): void; /** * @see {@link GetRecommendationsCommand} */ getRecommendations(args: GetRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise; getRecommendations(args: GetRecommendationsCommandInput, cb: (err: any, data?: GetRecommendationsCommandOutput) => void): void; getRecommendations(args: GetRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecommendationsCommandOutput) => void): void; /** * @see {@link GetSessionCommand} */ getSession(args: GetSessionCommandInput, options?: __HttpHandlerOptions): Promise; getSession(args: GetSessionCommandInput, cb: (err: any, data?: GetSessionCommandOutput) => void): void; getSession(args: GetSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSessionCommandOutput) => void): void; /** * @see {@link ListAssistantAssociationsCommand} */ listAssistantAssociations(args: ListAssistantAssociationsCommandInput, options?: __HttpHandlerOptions): Promise; listAssistantAssociations(args: ListAssistantAssociationsCommandInput, cb: (err: any, data?: ListAssistantAssociationsCommandOutput) => void): void; listAssistantAssociations(args: ListAssistantAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssistantAssociationsCommandOutput) => void): void; /** * @see {@link ListAssistantsCommand} */ listAssistants(): Promise; listAssistants(args: ListAssistantsCommandInput, options?: __HttpHandlerOptions): Promise; listAssistants(args: ListAssistantsCommandInput, cb: (err: any, data?: ListAssistantsCommandOutput) => void): void; listAssistants(args: ListAssistantsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssistantsCommandOutput) => void): void; /** * @see {@link ListContentsCommand} */ listContents(args: ListContentsCommandInput, options?: __HttpHandlerOptions): Promise; listContents(args: ListContentsCommandInput, cb: (err: any, data?: ListContentsCommandOutput) => void): void; listContents(args: ListContentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContentsCommandOutput) => void): void; /** * @see {@link ListImportJobsCommand} */ listImportJobs(args: ListImportJobsCommandInput, options?: __HttpHandlerOptions): Promise; listImportJobs(args: ListImportJobsCommandInput, cb: (err: any, data?: ListImportJobsCommandOutput) => void): void; listImportJobs(args: ListImportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListImportJobsCommandOutput) => void): void; /** * @see {@link ListKnowledgeBasesCommand} */ listKnowledgeBases(): Promise; listKnowledgeBases(args: ListKnowledgeBasesCommandInput, options?: __HttpHandlerOptions): Promise; listKnowledgeBases(args: ListKnowledgeBasesCommandInput, cb: (err: any, data?: ListKnowledgeBasesCommandOutput) => void): void; listKnowledgeBases(args: ListKnowledgeBasesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListKnowledgeBasesCommandOutput) => void): void; /** * @see {@link ListQuickResponsesCommand} */ listQuickResponses(args: ListQuickResponsesCommandInput, options?: __HttpHandlerOptions): Promise; listQuickResponses(args: ListQuickResponsesCommandInput, cb: (err: any, data?: ListQuickResponsesCommandOutput) => void): void; listQuickResponses(args: ListQuickResponsesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListQuickResponsesCommandOutput) => void): void; /** * @see {@link ListTagsForResourceCommand} */ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise; listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void; listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void; /** * @see {@link NotifyRecommendationsReceivedCommand} */ notifyRecommendationsReceived(args: NotifyRecommendationsReceivedCommandInput, options?: __HttpHandlerOptions): Promise; notifyRecommendationsReceived(args: NotifyRecommendationsReceivedCommandInput, cb: (err: any, data?: NotifyRecommendationsReceivedCommandOutput) => void): void; notifyRecommendationsReceived(args: NotifyRecommendationsReceivedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: NotifyRecommendationsReceivedCommandOutput) => void): void; /** * @see {@link QueryAssistantCommand} */ queryAssistant(args: QueryAssistantCommandInput, options?: __HttpHandlerOptions): Promise; queryAssistant(args: QueryAssistantCommandInput, cb: (err: any, data?: QueryAssistantCommandOutput) => void): void; queryAssistant(args: QueryAssistantCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: QueryAssistantCommandOutput) => void): void; /** * @see {@link RemoveKnowledgeBaseTemplateUriCommand} */ removeKnowledgeBaseTemplateUri(args: RemoveKnowledgeBaseTemplateUriCommandInput, options?: __HttpHandlerOptions): Promise; removeKnowledgeBaseTemplateUri(args: RemoveKnowledgeBaseTemplateUriCommandInput, cb: (err: any, data?: RemoveKnowledgeBaseTemplateUriCommandOutput) => void): void; removeKnowledgeBaseTemplateUri(args: RemoveKnowledgeBaseTemplateUriCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveKnowledgeBaseTemplateUriCommandOutput) => void): void; /** * @see {@link SearchContentCommand} */ searchContent(args: SearchContentCommandInput, options?: __HttpHandlerOptions): Promise; searchContent(args: SearchContentCommandInput, cb: (err: any, data?: SearchContentCommandOutput) => void): void; searchContent(args: SearchContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchContentCommandOutput) => void): void; /** * @see {@link SearchQuickResponsesCommand} */ searchQuickResponses(args: SearchQuickResponsesCommandInput, options?: __HttpHandlerOptions): Promise; searchQuickResponses(args: SearchQuickResponsesCommandInput, cb: (err: any, data?: SearchQuickResponsesCommandOutput) => void): void; searchQuickResponses(args: SearchQuickResponsesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchQuickResponsesCommandOutput) => void): void; /** * @see {@link SearchSessionsCommand} */ searchSessions(args: SearchSessionsCommandInput, options?: __HttpHandlerOptions): Promise; searchSessions(args: SearchSessionsCommandInput, cb: (err: any, data?: SearchSessionsCommandOutput) => void): void; searchSessions(args: SearchSessionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchSessionsCommandOutput) => void): void; /** * @see {@link StartContentUploadCommand} */ startContentUpload(args: StartContentUploadCommandInput, options?: __HttpHandlerOptions): Promise; startContentUpload(args: StartContentUploadCommandInput, cb: (err: any, data?: StartContentUploadCommandOutput) => void): void; startContentUpload(args: StartContentUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartContentUploadCommandOutput) => void): void; /** * @see {@link StartImportJobCommand} */ startImportJob(args: StartImportJobCommandInput, options?: __HttpHandlerOptions): Promise; startImportJob(args: StartImportJobCommandInput, cb: (err: any, data?: StartImportJobCommandOutput) => void): void; startImportJob(args: StartImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartImportJobCommandOutput) => void): void; /** * @see {@link TagResourceCommand} */ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise; tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void; tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void; /** * @see {@link UntagResourceCommand} */ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise; untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void; untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void; /** * @see {@link UpdateContentCommand} */ updateContent(args: UpdateContentCommandInput, options?: __HttpHandlerOptions): Promise; updateContent(args: UpdateContentCommandInput, cb: (err: any, data?: UpdateContentCommandOutput) => void): void; updateContent(args: UpdateContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContentCommandOutput) => void): void; /** * @see {@link UpdateKnowledgeBaseTemplateUriCommand} */ updateKnowledgeBaseTemplateUri(args: UpdateKnowledgeBaseTemplateUriCommandInput, options?: __HttpHandlerOptions): Promise; updateKnowledgeBaseTemplateUri(args: UpdateKnowledgeBaseTemplateUriCommandInput, cb: (err: any, data?: UpdateKnowledgeBaseTemplateUriCommandOutput) => void): void; updateKnowledgeBaseTemplateUri(args: UpdateKnowledgeBaseTemplateUriCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateKnowledgeBaseTemplateUriCommandOutput) => void): void; /** * @see {@link UpdateQuickResponseCommand} */ updateQuickResponse(args: UpdateQuickResponseCommandInput, options?: __HttpHandlerOptions): Promise; updateQuickResponse(args: UpdateQuickResponseCommandInput, cb: (err: any, data?: UpdateQuickResponseCommandOutput) => void): void; updateQuickResponse(args: UpdateQuickResponseCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateQuickResponseCommandOutput) => void): void; /** * @see {@link ListAssistantAssociationsCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link ListAssistantAssociationsCommandOutput}. */ paginateListAssistantAssociations(args: ListAssistantAssociationsCommandInput, paginationConfig?: Omit): Paginator; /** * @see {@link ListAssistantsCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link ListAssistantsCommandOutput}. */ paginateListAssistants(args?: ListAssistantsCommandInput, paginationConfig?: Omit): Paginator; /** * @see {@link ListContentsCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link ListContentsCommandOutput}. */ paginateListContents(args: ListContentsCommandInput, paginationConfig?: Omit): Paginator; /** * @see {@link ListImportJobsCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link ListImportJobsCommandOutput}. */ paginateListImportJobs(args: ListImportJobsCommandInput, paginationConfig?: Omit): Paginator; /** * @see {@link ListKnowledgeBasesCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link ListKnowledgeBasesCommandOutput}. */ paginateListKnowledgeBases(args?: ListKnowledgeBasesCommandInput, paginationConfig?: Omit): Paginator; /** * @see {@link ListQuickResponsesCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link ListQuickResponsesCommandOutput}. */ paginateListQuickResponses(args: ListQuickResponsesCommandInput, paginationConfig?: Omit): Paginator; /** * @see {@link QueryAssistantCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link QueryAssistantCommandOutput}. */ paginateQueryAssistant(args: QueryAssistantCommandInput, paginationConfig?: Omit): Paginator; /** * @see {@link SearchContentCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link SearchContentCommandOutput}. */ paginateSearchContent(args: SearchContentCommandInput, paginationConfig?: Omit): Paginator; /** * @see {@link SearchQuickResponsesCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link SearchQuickResponsesCommandOutput}. */ paginateSearchQuickResponses(args: SearchQuickResponsesCommandInput, paginationConfig?: Omit): Paginator; /** * @see {@link SearchSessionsCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link SearchSessionsCommandOutput}. */ paginateSearchSessions(args: SearchSessionsCommandInput, paginationConfig?: Omit): Paginator; } /** *

Amazon Connect Wisdom delivers agents the information they need to solve customer issues as they're * actively speaking with customers. Agents can search across connected repositories from within * their agent desktop to find answers quickly. Use Amazon Connect Wisdom to create an assistant and a * knowledge base, for example, or manage content by uploading custom files.

* @public */ export declare class Wisdom extends WisdomClient implements Wisdom { }