import { LitElement } from 'lit'; /** * Native-size 88x31 badge button for links, affiliations, validators, and project stamps. * * @slot - Badge label. * @slot icon - Optional small icon. * @csspart chrome - The badge frame. * @csspart icon - Optional icon wrapper. * @csspart label - Badge label wrapper. */ export declare class W1cBadge88x31 extends LitElement { href: string; target: string; rel: string; variant: 'plain' | 'split' | 'warning'; label: string; private hasIcon; render(): import("lit").TemplateResult<1>; private handleIconSlotChange; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-badge-88x31': W1cBadge88x31; } }