type Radiobox = {
Label: string?,
IsRadio: boolean?,
Value: boolean,
NoAnimation: boolean?,
Callback: ((...any) -> unknown)?,
SetTicked: (self: Checkbox, Value: boolean, NoAnimation: boolean) -> ...any,
Toggle: (self: Checkbox) -> ...any
}
:Radiobox({
Value = true,
Label = "Radio box",
Callback = function(self, Value: boolean)
print("Ticked", Value)
end
})