export type useVideoProps = { src?: string | MediaStream; unsuspend?: string; crossOrigin?: string; muted?: boolean; loop?: boolean; start?: boolean; playsInline?: boolean; }; export declare function useVideo(src: any, { unsuspend, crossOrigin, muted, loop, start, playsInline, ...rest }?: useVideoProps): HTMLVideoElement;