export interface ListButtons {
    icon?: string;
    label?: string;
    event?: (item: any) => void;
    visible: boolean;
    tooltip?: string;
    color?: string;
}
