export declare type buttonItem = {
    label?: string;
    clickFunc?: () => void;
    disabledFunc?: () => boolean;
    disabled?: boolean;
    showFunc?: () => boolean;
    show?: boolean;
    events?: any;
};
