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