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