import { LitElement } from 'lit'; /** * Retro push button primitive. * * @slot - Button label and inline content. * @csspart control - The native button control. * @csspart button - Alias for the native button control. */ export declare class W1cButton extends LitElement { disabled: boolean; variant: 'raised' | 'sunken' | 'flat'; render(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-button': W1cButton; } }