import { DynamicContentStore } from "../../../flex-ui-core/src"; import * as React from "react"; import { CallCanvasChildrenKeys, CallCanvasChildrenProps, State } from "./CallCanvas.definitions"; import { DialpadState } from "./CallCanvasDialpad/CallCanvasDialpad.definitions"; export declare const displayName = "CallCanvas"; export declare const contentStore: DynamicContentStore; export declare class CallCanvasImpl extends React.PureComponent { static displayName: string; private containerElement; refCallback: (element: React.ReactInstance) => void; state: State; handleParticipantWidthNeedsUpdate: () => void; retyFetching: () => Promise; componentDidMount(): Promise; componentWillUnmount(): void; componentDidUpdate(): void; renderCCAIActions: (dialpadState: DialpadState) => JSX.Element; private fetchTranscript; private renderTranscript; render(): JSX.Element; }