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