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