import { RefObject, CSSProperties } from 'react'; interface Props { isTalking: boolean; streamRefs: { audio: RefObject; video: RefObject; videoSrc: string | undefined; idleVideo: RefObject; idleVideoSrc: string | undefined; }; containerStyle?: CSSProperties; containerClassName?: string; videoStyle?: CSSProperties; videoClassName?: string; onLoadStart?: () => void; onLoadedData?: () => void; } export declare const StreamPlayer: ({ isTalking, streamRefs, containerStyle, containerClassName, videoStyle, videoClassName, onLoadStart, onLoadedData, }: Props) => import("react/jsx-runtime").JSX.Element; export {};