import { EventEmitter, OnInit } from '@angular/core'; import { ButtonTypes } from './button-types.enum'; export declare class ButtonComponent implements OnInit { btnCaption: string; btnType: ButtonTypes; testId: string; showBusyIndicator: boolean; clicked: EventEmitter; btnTypes: typeof ButtonTypes; constructor(); ngOnInit(): void; onClick(): void; }