import { LitElement } from 'lit'; /** * @hidden * A custom button component used within the Dock Manager. * * @element igc-button-component * @slot - Default slot for button content. */ export default class IgcButtonDMComponent extends LitElement { static readonly tagName = "igc-button-component"; static styles: import("lit").CSSResult[]; static register(): void; /** * Indicates whether the button is disabled. * * @attr * @default false */ disabled: boolean; /** * The type attribute of the control. * * @attr * @default submit */ type: 'button' | 'submit' | 'reset'; /** * The name attribute of the control. * @attr */ name: string; /** * The value attribute of the control. * @attr */ value: string; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-button-component': IgcButtonDMComponent; } }