export interface VideoFrameProps { className?: string; videoUrl: string; normalizeUrl?: boolean; [props: string]: any; } export declare const VideoFrame: ({ className, videoUrl, normalizeUrl, ...props }: VideoFrameProps) => import("@emotion/react/jsx-runtime").JSX.Element;