import type { Action, ExtensionAuto } from "../../../core/index.js"; import { type VideoSpecsOptions } from "./VideoSpecs/index.js"; import type { VideoActionAttrs } from "./actions.js"; import { vAction } from "./const.js"; export { videoNodeName, videoType } from "./VideoSpecs/index.js"; export type { VideoActionAttrs } from "./actions.js"; export type VideoOptions = VideoSpecsOptions & {}; export declare const Video: ExtensionAuto; declare global { namespace WysiwygEditor { interface Actions { [vAction]: Action; } } }