import { EventEmitter } from '@angular/core'; export declare class ButtonComponent { text: string; tooltip: string; icon: string; size: 'md' | 'sm'; buttonStyle: 'primary' | 'secondary' | 'light' | 'success' | 'danger' | 'warning' | 'info'; click: EventEmitter<{}>; style: any; disabled: boolean; buttonType: 'button' | 'submit'; classList: any; onClick(event: any): void; } export declare class ButtonModule { }