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