import React from 'react'; export type TextareaResize = 'none' | 'vertical' | 'horizontal' | 'both'; export type TextareaProps = Omit, 'className' | 'style'> & { label: string; hideLabel?: boolean; error?: string; helperText?: string; resize?: TextareaResize; className?: string; style?: React.CSSProperties; }; type TextareaComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const Textarea: TextareaComponent; export default Textarea; //# sourceMappingURL=index.d.ts.map