export interface BtnEvents {
    onBlur: (event: Event) => void;
    onFocus: (event: Event) => void;
    onClick: (event: Event) => void;
}
