import { ContentFragment, DynamicContentStore } from "../../../flex-ui-core/src"; import { Player } from "@twilio/player"; import * as React from "react"; export declare const displayName = "ConversationInfo"; export declare const Content: DynamicContentStore; export interface ConversationInfoImplStateProps { agentName: string; agentTeam?: string; queueName: string; numberFrom?: string; numberTo?: string; segmentDuration: string; } export type ConversationInfoImplOwnProps = { children?: React.ReactElement; player: Player | null; segmentId: string; noGrow?: boolean; }; export type ConversationInfoImplProps = ConversationInfoImplStateProps & ConversationInfoImplOwnProps; interface ConversationInfoImplState { currentTime: string; } export declare class ConversationInfoImpl extends React.PureComponent { render(): JSX.Element; } export {};