UNPKG

@otitoju/formcraft-core

Version:

🚀 Lightweight, TypeScript-first form management library for React and React Native with built-in validation, zero dependencies, and excellent developer experience

12 lines • 492 B
import { type TextareaHTMLAttributes } from "react"; interface TextareaProps extends Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, "name"> { name: string; label?: string; showError?: boolean; containerClassName?: string; labelClassName?: string; errorClassName?: string; } export declare const Textarea: import("react").ForwardRefExoticComponent<TextareaProps & import("react").RefAttributes<HTMLTextAreaElement>>; export {}; //# sourceMappingURL=Textarea.d.ts.map