import type { AsyncThunkOptions } from '../../../app/async-thunk-options.js'; import type { ClientThunkExtraArguments } from '../../../app/thunk-extra-arguments.js'; import type { CaseAssistAppState } from '../../../state/case-assist-app-state.js'; import { type HtmlAPIClientOptions } from '../../search/html/html-api-client.js'; import type { HtmlRequest } from '../../search/html/html-request.js'; import { type GetCaseClassificationsRequest } from './get-case-classifications/get-case-classifications-request.js'; import type { GetCaseClassificationsResponse } from './get-case-classifications/get-case-classifications-response.js'; import { type GetDocumentSuggestionsRequest } from './get-document-suggestions/get-document-suggestions-request.js'; import type { GetDocumentSuggestionsResponse } from './get-document-suggestions/get-document-suggestions-response.js'; /** * Initialization options for the `CaseAssistAPIClient`. */ export interface CaseAssistAPIClientOptions extends HtmlAPIClientOptions { } export interface AsyncThunkCaseAssistOptions> extends AsyncThunkOptions> { rejectValue: CaseAssistAPIErrorStatusResponse; } /** * Defines a Case Assist API response. It can represent an error or a successful response. */ type CaseAssistAPIResponse = CaseAssistAPISuccessResponse | CaseAssistAPIErrorResponse; /** * Defines a Case Assist API successful response. */ interface CaseAssistAPISuccessResponse { success: TContent; } /** * Defines the content of a Case Assist API error response. */ export interface CaseAssistAPIErrorStatusResponse { statusCode: number; message: string; type: string; ignored?: boolean; } /** * Defines a Case Assist API error response. */ interface CaseAssistAPIErrorResponse { error: CaseAssistAPIErrorStatusResponse; } /** * The client to use to interface with the Case Assist API. */ export declare class CaseAssistAPIClient { private options; constructor(options: CaseAssistAPIClientOptions); /** * Retrieves the case classifications from the API. * * See https://platform.cloud.coveo.com/docs?urls.primaryName=Customer%20Service#/Suggestions/postClassify * * @param req - The request parameters. * @returns The case classifications grouped by fields for the given case information. */ getCaseClassifications(req: GetCaseClassificationsRequest): Promise>; /** * Retrieves the document suggestions from the API. * * See https://platform.cloud.coveo.com/docs?urls.primaryName=Customer%20Service#/Suggestions/getSuggestDocument * * @param req - The request parameters. * @returns The document suggestions for the given case information and context. */ getDocumentSuggestions(req: GetDocumentSuggestionsRequest): Promise>; html(req: HtmlRequest): Promise<{ success: string; error?: undefined; } | { error: import("../../search/search-api-error-response.js").SearchAPIErrorWithStatusCode; success?: undefined; }>; } export {};