/** @jsxRuntime classic */ /** @jsx jsx */ import React, { FC } from 'react'; import { Icons } from '../../types/theme'; export interface InputProps { placeholder?: string; label?: string; info?: string; helper?: string; helperContent?: string; sizer: 'M' | 'S'; leftIcon?: Icons; rightIcon?: Icons; error?: string | undefined; setChange?: (val: string | number) => void; disableTrailing?: boolean; clear?: () => void; } export declare const Textarea: FC>;