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