import type { ComponentPropsWithoutRef } from 'react'; type TextareaProps = ComponentPropsWithoutRef<'textarea'>; declare function Textarea({ className, ...props }: TextareaProps): import("react/jsx-runtime").JSX.Element; export default Textarea; export type { TextareaProps };