import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types"; import { type ListRealtimeContactAnalysisSegmentsCommandInput, type ListRealtimeContactAnalysisSegmentsCommandOutput } from "./commands/ListRealtimeContactAnalysisSegmentsCommand"; import { ConnectContactLensClient } from "./ConnectContactLensClient"; export interface ConnectContactLens { /** * @see {@link ListRealtimeContactAnalysisSegmentsCommand} */ listRealtimeContactAnalysisSegments(args: ListRealtimeContactAnalysisSegmentsCommandInput, options?: __HttpHandlerOptions): Promise; listRealtimeContactAnalysisSegments(args: ListRealtimeContactAnalysisSegmentsCommandInput, cb: (err: any, data?: ListRealtimeContactAnalysisSegmentsCommandOutput) => void): void; listRealtimeContactAnalysisSegments(args: ListRealtimeContactAnalysisSegmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRealtimeContactAnalysisSegmentsCommandOutput) => void): void; /** * @see {@link ListRealtimeContactAnalysisSegmentsCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link ListRealtimeContactAnalysisSegmentsCommandOutput}. */ paginateListRealtimeContactAnalysisSegments(args: ListRealtimeContactAnalysisSegmentsCommandInput, paginationConfig?: Omit): Paginator; } /** * *

Amazon Connect Contact Lens enables you to analyze conversations between customer and agents, by using * speech transcription, natural language processing, and intelligent search capabilities. * It performs sentiment analysis, detects issues, and enables you to automatically * categorize contacts.

*

Amazon Connect Contact Lens provides both real-time and post-call analytics of customer-agent * conversations. For more information, see Analyze conversations * using speech analytics in the Amazon Connect Administrator * Guide.

* @public */ export declare class ConnectContactLens extends ConnectContactLensClient implements ConnectContactLens { }