import * as React from "react"; import { InsightsEmailTranscriptMediaLink, InsightsMediaLinkWithSid } from "./Player.definitions"; interface TranscriptContentOwnProps { mediaLink: InsightsEmailTranscriptMediaLink | InsightsMediaLinkWithSid; autoInitChannel?: boolean; } interface TranscriptContentStateProps { sid?: string; hasError: boolean; isLoading: boolean; hasMarkdownSupport?: boolean; } type TranscriptContentProps = TranscriptContentOwnProps & TranscriptContentStateProps; declare class _TranscriptContent extends React.PureComponent { private wrapperRef; static defaultProps: { autoInitChannel: boolean; }; constructor(props: TranscriptContentProps); renderLoading(): JSX.Element; renderError(): JSX.Element; render(): JSX.Element; } export declare const TranscriptContent: import("react-redux").ConnectedComponent & TranscriptContentOwnProps & TranscriptContentStateProps, "sid" | "isLoading" | "hasMarkdownSupport" | "hasError"> & TranscriptContentOwnProps>; export {};