import type { Components, JSX } from "../types/components"; interface CountdownScreen extends Components.CountdownScreen, HTMLElement {} export const CountdownScreen: { prototype: CountdownScreen; new (): CountdownScreen; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;