import ICheckbox from './ICheckbox';
export default class checkbox implements ICheckbox {
    label: string;
    value: string;
    optionEnabled: boolean;
}
