import { OnInit } from '@angular/core'; export declare type ButtonType = 'icon' | 'primary' | 'secondary' | 'submit' | 'reset' | 'danger'; export declare class ButtonComponent implements OnInit { type: ButtonType; icon?: string; label?: string; isIconButton: boolean; isPrimary: boolean; isSecondary: boolean; isDanger: boolean; ngOnInit(): void; }