import { CSSProperties, ReactNode } from 'react'; import { TObjectFit } from '../../../const/common'; interface IOverlayStreamProps { avatar?: string; username?: string; isMobile?: boolean; blur?: boolean; showAvatar?: boolean; showUsername?: boolean; theme?: 'circle' | 'dot'; style?: CSSProperties; showOverlayer?: boolean; showLoading?: boolean; showBackground?: boolean; className?: string; showVolumn?: boolean; volume?: number; isMute?: boolean; tip?: string; isSmall?: boolean; showTip?: boolean; children?: ReactNode; background?: string; fit?: TObjectFit; onError?: (event?: object) => void; } export default function OverlayStream(props: IOverlayStreamProps): import("react/jsx-runtime").JSX.Element; export {};