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