import { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, } from "@smithy/types"; import { ListRealtimeContactAnalysisSegmentsCommandInput, ListRealtimeContactAnalysisSegmentsCommandOutput, } from "./commands/ListRealtimeContactAnalysisSegmentsCommand"; import { ConnectContactLensClient } from "./ConnectContactLensClient"; export interface ConnectContactLens { 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; paginateListRealtimeContactAnalysisSegments( args: ListRealtimeContactAnalysisSegmentsCommandInput, paginationConfig?: Pick< PaginationConfiguration, Exclude > ): Paginator; } export declare class ConnectContactLens extends ConnectContactLensClient implements ConnectContactLens {}