declare const BlockEmbed: any; interface valueType { controls?: any; [fields: string]: any; } declare class Video extends BlockEmbed { static blotName: string; static className: string; static tagName: string; static create(value: valueType): any; static formats(node: HTMLElement): object; static value(node: HTMLElement): object; format(name?: string, value?: string): any; } export default Video;