import type { ComponentPropsWithRef, ElementType } from 'react'; export type TextAreaProperties = { /** fixed height */ fixed?: boolean; } & ComponentPropsWithRef; /** * Input component with optional dynamic sizing, usually used for long-form text input. * @docs {@link https://design.visa.com/components/input/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const Textarea: { ({ className, fixed, ...remainingProps }: TextAreaProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Textarea;