import { Command } from '../../../core/commands/Command';
import { HTMLEditor } from '../../../core/HTMLEditor';
export declare class YouTubeVideoCommand implements Command {
    private videoUrl;
    constructor(_editor: HTMLEditor, videoUrl: string);
    execute(): void;
    private extractYouTubeVideoId;
}
