import { Theme } from "../../../flex-ui-core/src"; import { Player } from "@twilio/player"; import * as React from "react"; import { ConversationViewImplOwnProps, ConversationViewImplProps } from "./ConversationViewImpl"; export type ConversationViewProps = Partial>; export type ConversationViewChildProps = Omit & { theme: Theme; }; export declare class ConversationView extends React.PureComponent { static readonly displayName = "ConversationView"; static readonly Content: import("@twilio/flex-ui-core").DynamicContentStore; static Player: Player | null; private getBaseRoute; render(): JSX.Element; }