import { CatFormTextMaskConfig, CatFormTextOptions } from '../form.interface'; import { FormFieldInputBase } from '../form-field-input.base'; export declare class FormTextFactory extends FormFieldInputBase { setMask(mask: CatFormTextMaskConfig): this; setMinLength(minLength: number): this; setMaxLength(maxLength: number): this; }