interface ICheckbox {
    label: string;
    value: string;
    description?: string;
    optionEnabled?: boolean;
}
export default ICheckbox;
