import { Node } from '@tiptap/core'; export interface VideoOptions { allowedPlatforms: string[]; } declare module '@tiptap/core' { interface Commands { video: { setVideo: (attributes: { url: string; platform?: string; caption?: string; }) => ReturnType; }; } } export declare const CommonPubVideo: Node; //# sourceMappingURL=video.d.ts.map