// @flow /* DOCUMENTATION: https://orbit.kiwi/components/textarea/ */ import type { Globals, Translation } from "../common/common.js.flow"; import type { spaceAfter } from "../common/getSpacingToken/index"; export type Props = {| ...Globals, ...spaceAfter, +size?: "small" | "normal", +name?: string, +rows?: number, +label?: Translation, +value?: string, +fullHeight?: boolean, +placeholder?: Translation, +help?: React$Node, +error?: React$Node, +resize?: "vertical" | "none", +disabled?: boolean, +maxLength?: number, +tabIndex?: string, +onChange?: (ev: SyntheticInputEvent) => void | Promise, +onFocus?: (ev: SyntheticInputEvent) => void | Promise, +onBlur?: (ev: SyntheticInputEvent) => void | Promise, |}; declare export default React$ComponentType;