import { LayoutMargin, State, Click, Focus, Width } from '@euax-ui/default-props'; export declare type TextareaProps = { id?: string; placeholder: string; size?: 'sm' | 'md' | 'lg' | 'xs'; type?: string; /** *If `true`, the form control will be disabled. This has 2 side effects: - The `FormLabel` will have `data-disabled` attribute - The form element (e.g, Input) will be disabled */ isDisabled?: boolean; isInvalid?: boolean; isReadOnly?: boolean; isRequired?: boolean; } & LayoutMargin & State & Click & Focus & Width;