import type { EditableNodeAttributes } from "../types"; interface VideoEmbedProps extends EditableNodeAttributes { src?: string; title?: string; aspectRatio?: "16/9" | "4/3" | "1/1"; className?: string; } export declare function VideoEmbed({ src, title, aspectRatio, className, "data-node-id": dataNodeId, }: VideoEmbedProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=VideoEmbed.d.ts.map