import type { ReactNode } from 'react'; import { BoxProps } from '../Box'; export interface TextareaProps extends BoxProps { disabled: boolean; value: string; onChange: (value: string) => void; children: ReactNode; autoFocus: boolean; placeholder: string; inputProps: BoxProps; } export declare let Textarea: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default Textarea;