import type { BlockDefinition, RegisteredBlock } from '@lit-pigeon/core'; interface CountdownValues { imageUrl: string; alt: string; href: string; width: number; endDateLabel: string; } declare function read(block: RegisteredBlock): CountdownValues; /** * "Countdown" block. Live CSS countdowns don't render in any major email client, * so the canonical pattern is a hosted GIF/PNG generated per-email-open by a * service like Sendtric, MotionMail, or NiftyImages. The author pastes the * hosted URL; we render it as an `` (with optional link). Falls back * to a static text label when no image is supplied. */ export declare const countdownBlock: BlockDefinition; export type { CountdownValues }; export declare const __countdown_read: typeof read; //# sourceMappingURL=countdown.d.ts.map