import { Input, TextArea } from '@judo/model-api'; export interface TextAreaComponentProps { element: TextArea | Input; readOnly?: boolean; value?: string; onChange?: (value: string) => void; error?: string; disabled?: boolean; judoClassName?: string; } /** * TextArea component. */ export declare function TextAreaComponent({ element, readOnly, value, onChange, error, disabled, judoClassName, }: TextAreaComponentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TextAreaComponent.d.ts.map