import { Attributes, Component } from 'jinge'; export interface ButtonAttrs { to?: string; target?: '_self' | '_blank'; href?: string; active?: string; type?: 'button' | 'submit'; disabled?: boolean; ripple?: boolean; } export declare class Button extends Component { static template: string; to?: string; target?: '_self' | '_blank'; href?: string; active?: string; type: 'button' | 'submit'; disabled: boolean; ripple: boolean; rippleActive: false | { _event: Event; }; hasFocus: boolean; _tag: 'sref' | 'a' | 'button'; _ts: number; constructor(attrs: Attributes); __afterRender(): void; __beforeDestroy(): void; touchstart(event: TouchEvent): void; mousedown(event: MouseEvent): void; }