import React, { ReactElement } from 'react'; import { AlertTypes } from '../../../models'; interface Props { alert?: { message?: string; type: AlertTypes; }; auxiliary?: string; cols?: number; count?: boolean; label?: string; labelDirection?: 'row' | 'column'; maxLength?: number; id?: string; name?: string; onBlur?: () => void; onChange?: (event: React.ChangeEvent, value: string, name: string) => void; placeholder?: string; rows?: number; value?: string; disabled?: boolean; } export declare const InputTextArea: (props: Props) => ReactElement; export {}; //# sourceMappingURL=index.d.ts.map