import { ElementRef, OnChanges, OnInit } from '@angular/core'; export declare class ButtonComponent implements OnInit, OnChanges { private elementRef; type: 'submit' | 'button'; color: 'primary' | 'secondary' | 'success' | 'danger' | 'fb'; size: 'xlarge' | 'large' | 'medium' | 'small' | 'full-width' | 'full-format'; border: 'dashed'; active: any; disabled: any; rootClass: string; classMap: any; constructor(elementRef: ElementRef); ngOnInit(): void; ngOnChanges(): void; updateClassMap(): void; }