import * as React from 'react'; import { TextInput, type TextInputProps } from 'react-native'; import { cn } from '../../lib/utils'; function Textarea({ className, multiline = true, numberOfLines = 4, placeholderClassName, ...props }: TextInputProps & { ref?: React.RefObject; }) { return ( ); } export { Textarea };