import { ZDSElement } from './base'; import { ZButton_Props } from '@zurich/dev-utils/code/Button'; /** ## `` * * Component docs. */ export declare class ZButton extends ZDSElement implements ZButton_Props { #private; readonly _name = "button"; config?: ZButton_Props['config']; content?: ZButton_Props['content']; icon?: ZButton_Props['icon']; href?: ZButton_Props['href']; 'icon-right'?: ZButton_Props['icon-right']; disabled?: ZButton_Props['disabled']; loading?: ZButton_Props['loading']; wide?: ZButton_Props['wide']; target?: ZButton_Props['target']; 'popover-target'?: ZButton_Props['popover-target']; 'as-submit'?: ZButton_Props['as-submit']; render(): import('lit-html').TemplateResult<1>; get slottedPopover(): true | undefined; focus(): void; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-button': ZButton; } }