export declare enum BtnStates {
    active = "active",
    disabled = "disabled",
    loading = "loading"
}
export declare type BtnState = keyof typeof BtnStates;
