import type { BlockDefinition, RegisteredBlock } from '@lit-pigeon/core'; interface VideoValues { posterUrl: string; videoUrl: string; alt: string; width: number; playButtonColor: string; } declare function read(block: RegisteredBlock): VideoValues; /** * "Video" block. Email clients don't reliably play HTML5 video — the standard * pattern is a linked poster image with a play-button overlay. We render the * play triangle as a CSS-positioned chip on the canvas; on export, the MJML * is a linked `` because cross-client overlay positioning is too * unreliable. Authors who want a visible play button in the email should bake * one into the poster artwork. */ export declare const videoBlock: BlockDefinition; export type { VideoValues }; export declare const __video_read: typeof read; //# sourceMappingURL=video.d.ts.map