import { LitElement } from 'lit'; export declare enum ButtonVariant { normal = "normal", raised = "raised", flat = "flat", check = "check" } export declare class ObcButton extends LitElement { icon: string; variant: ButtonVariant; fullWidth: boolean; checked: boolean; disabled: boolean; href?: string; target?: string; leadingIcon: NodeListOf; trailingIcon: NodeListOf; hasIconLeading: boolean; hasIconTrailing: boolean; firstUpdated(): void; render(): import('lit-html').TemplateResult; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'obc-button': ObcButton; } } //# sourceMappingURL=button.d.ts.map