declare global { interface HTMLElementTagNameMap { "usa-tag": USATagElement; } } export declare const TAG_VARIANTS: readonly ["default", "big"]; export declare const TAG_TYPES: readonly ["new", "default"]; export type TagVariant = (typeof TAG_VARIANTS)[number]; export type TagType = (typeof TAG_TYPES)[number]; export declare class USATagElement extends HTMLElement { accessor variant: TagVariant; accessor type: TagType; }