import { ReactElement } from 'react'; import type { PolymorphicForwardRefExoticComponent } from 'react-polymorphic-types'; import type { SystemProps } from "../../../lib"; import { InputWrapperProps } from "../InputWrapper"; declare const _defaultElement = "input"; declare type CustomProps = { icon?: ReactElement; } & SystemProps & InputWrapperProps; export declare const Textarea: PolymorphicForwardRefExoticComponent; export {};