import { FormFieldInputBase } from '../form-field-input.base'; import { CatFormTextareaOptions } from '../form.interface'; export declare class FormTextareaFactory extends FormFieldInputBase { setRows(minRows: number, maxRows?: number): this; setMinLength(minLength: number): this; setMaxLength(maxLength: number): this; }