/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ import type { AutoComplete, StrictReactDOMProps } from './StrictReactDOMProps'; export type StrictReactDOMTextAreaProps = Readonly< Omit< StrictReactDOMProps, keyof ({ autoComplete?: AutoComplete; defaultValue?: null | undefined | string; disabled?: null | undefined | boolean; maxLength?: null | undefined | number; minLength?: null | undefined | number; name?: null | undefined | string; onBeforeInput?: any; onChange?: any; onInput?: any; onInvalid?: any; onSelect?: any; onSelectionChange?: any; placeholder?: null | undefined | string; readOnly?: null | undefined | boolean; required?: null | undefined | boolean; rows?: null | undefined | number; value?: null | undefined | string; }) > & { autoComplete?: AutoComplete; defaultValue?: null | undefined | string; disabled?: null | undefined | boolean; maxLength?: null | undefined | number; minLength?: null | undefined | number; name?: null | undefined | string; onBeforeInput?: any; onChange?: any; onInput?: any; onInvalid?: any; onSelect?: any; onSelectionChange?: any; placeholder?: null | undefined | string; readOnly?: null | undefined | boolean; required?: null | undefined | boolean; rows?: null | undefined | number; value?: null | undefined | string; } >;