import type { StaticDescription, StaticLabel } from 'payload'; import type React from 'react'; import { type ChangeEvent } from 'react'; export type TextAreaInputProps = { readonly AfterInput?: React.ReactNode; readonly BeforeInput?: React.ReactNode; readonly className?: string; readonly Description?: React.ReactNode; readonly description?: StaticDescription; readonly Error?: React.ReactNode; readonly inputRef?: React.RefObject; readonly Label?: React.ReactNode; readonly label?: StaticLabel; readonly localized?: boolean; readonly onChange?: (e: ChangeEvent) => void; readonly onKeyDown?: React.KeyboardEventHandler; readonly path: string; readonly placeholder?: string; readonly readOnly?: boolean; readonly required?: boolean; readonly rows?: number; readonly rtl?: boolean; readonly showError?: boolean; readonly style?: React.CSSProperties; readonly value?: string; readonly valueToRender?: string; }; //# sourceMappingURL=types.d.ts.map