import type { Control } from "../../enums/Control";
export interface IButton {
    controls: Control[];
    label: string;
}
