import type { EditableNodeAttributes } from "../types"; interface VideoPlayerProps extends EditableNodeAttributes { /** Video source URL (mp4, webm) */ src?: string; /** Poster/thumbnail image */ poster?: string; /** Show native controls */ controls?: boolean; /** Autoplay (muted required for autoplay) */ autoplay?: boolean; /** Loop playback */ loop?: boolean; /** Aspect ratio */ aspect?: "16/9" | "4/3" | "1/1" | "auto"; className?: string; } export declare function VideoPlayer({ src, poster, controls, autoplay, loop, aspect, className, "data-node-id": dataNodeId, }: VideoPlayerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=VideoPlayer.d.ts.map