import { Parchment as TypeParchment } from 'quill';

declare const BlockEmbed: TypeParchment.BlotConstructor;
declare class Video extends BlockEmbed {
    static blotName: string;
    static tagName: string;
    static SANITIZED_URL: string;
    static PROTOCOL_WHITELIST: string[];
    static className: string;
    statics: any;
    domNode: any;
    static sanitize(url: any): any;
    static create(value: any): HTMLElement;
    static value(domNode: any): any;
}
export default Video;
