import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type TextareaParts = { textarea: 'hover' | 'focus' | 'active' | 'readOnly' | 'disabled'; placeholder: ''; }; declare type TextareaDOMProps = React.ComponentPropsWithRef<'textarea'>; declare type TextareaStyleConfigProp = { styleConfig?: StyleConfig; }; declare type TextareaSystemProps = BoxSystemProps; export declare type TextareaProps = TextareaDOMProps & TextareaStyleConfigProp & TextareaSystemProps; export declare const Textarea: React.ForwardRefExoticComponent & React.RefAttributes>; export {};