import type { YooEditor, YooptaPathIndex } from '@yoopta/editor'; import type { VideoElement, VideoElementProps } from '../types'; type VideoElementOptions = { props?: Omit; }; type InsertVideoOptions = VideoElementOptions & { at?: YooptaPathIndex; focus?: boolean; }; export type VideoCommands = { buildVideoElements: (editor: YooEditor, options?: Partial) => VideoElement; insertVideo: (editor: YooEditor, options?: Partial) => void; deleteVideo: (editor: YooEditor, blockId: string) => void; updateVideo: (editor: YooEditor, blockId: string, props: Partial) => void; }; export declare const VideoCommands: VideoCommands; export {}; //# sourceMappingURL=index.d.ts.map