import { OnInit } from '@angular/core'; import { Sizes } from '../../../shared/enums'; import { IBadge } from '../../badge/interfaces'; export declare class ButtonComponent implements OnInit { readonly size: Sizes; readonly badge: IBadge; readonly label: string; readonly leftIcon: string; readonly rightIcon: string; readonly isLoading: boolean; readonly isOutlined: boolean; readonly isDisabled: boolean; readonly clazz: string; readonly type: string; sizeIcon: string; ngOnInit(): void; }