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