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