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