import { ForwardRefExoticComponent, RefAttributes } from 'react'; interface VideoProps { videoSrc: string; width: number; height: number; threshold?: number; tolerance?: number; spillSuppress?: number; brightness?: number; loop?: boolean; onLoadStart?: () => void; onLoadedData?: () => void; } export declare const VideoWithGreenScreenRemoval: ForwardRefExoticComponent>; export {};