export interface ButtonModel {
    label?: string;
    icon?: string;
    styleClass?: string;
    disabled?: boolean;
    size?: 'small' | 'large' | 'medium';
    loading?: boolean;
    severity?: 'success' | 'info' | 'warn' | 'danger' | 'help' | 'primary' | 'secondary' | 'contrast' | null | undefined;
    tooltip?: string;
    raised?: boolean;
    rounded?: boolean;
    text?: boolean;
    outlined?: boolean;
    badge?: string;
    buttonDisabled?: boolean;
}
