type InputTextMultiline = {
Value: string,
Placeholder: string?,
Disabled: boolean?,
--// Functions
Callback: ((string, ...any) -> unknown)?,
Clear: (InputText) -> InputText,
SetValue: (InputText, Value: string) -> InputText,
SetDisabled: (InputText, Disabled: boolean) -> InputText,
}
:InputTextMultiline({
Value = "Hello world!"
})