import { Type } from '@angular/core'; import { FieldTypeConfig, FormlyFieldConfig } from '@ngx-formly/core'; import { FieldType, FormlyFieldProps } from '@ngx-formly/material/form-field'; import * as i0 from "@angular/core"; interface TextAreaProps extends FormlyFieldProps { autosize?: boolean; autosizeMinRows?: number; autosizeMaxRows?: number; } export interface FormlyTextAreaFieldConfig extends FormlyFieldConfig { type: 'textarea' | Type; } export declare class FormlyFieldTextArea extends FieldType> { defaultOptions: { props: { cols: number; rows: number; }; }; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};