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