import { TweetHistory } from '@streamlayer/sdk-web-types'; import { VideoPlayerProps } from '../../video-player'; export declare const sanitizeContent: (text: string) => string; export type TwitterContentProps = TweetHistory & { isDetail?: boolean; muted?: boolean; controlVideo: VideoPlayerProps['controlVideo']; }; export declare const TwitterContent: React.FC;