/**
 * @license
 * Copyright ASW (A Software World) All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file
 */
import { EventEmitter } from '@angular/core';
import { MatDialog } from '@angular/material/dialog';
import { ControlOption, CSSFrameworkEnum } from '@asoftwareworld/form-builder-pro/api';
import { TextFieldControl } from './textfield-control';
import * as i0 from "@angular/core";
export declare class AswTextField {
    dialog: MatDialog;
    constants: any;
    icons: any;
    /**
     * TextField control
     */
    control: TextFieldControl | null;
    propertyPersonalization: string[];
    isPreviewTemplate: boolean;
    CSSFramework: CSSFrameworkEnum;
    patterns: ControlOption[];
    textFieldUpdateEvent: EventEmitter<any>;
    textFieldDeleteEvent: EventEmitter<any>;
    aswModelChange: EventEmitter<TextFieldControl>;
    duplicateControl: EventEmitter<TextFieldControl>;
    constructor(dialog: MatDialog);
    deleteTextFieldDialog(control: TextFieldControl): void;
    editTextFieldDialog(control: TextFieldControl): void;
    onChange(control: TextFieldControl): void;
    duplicateTextFieldControl(control: TextFieldControl): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<AswTextField, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<AswTextField, "asw-textfield", never, { "control": { "alias": "control"; "required": false; }; "propertyPersonalization": { "alias": "propertyPersonalization"; "required": false; }; "isPreviewTemplate": { "alias": "isPreviewTemplate"; "required": false; }; "CSSFramework": { "alias": "CSSFramework"; "required": false; }; "patterns": { "alias": "patterns"; "required": false; }; }, { "textFieldUpdateEvent": "textFieldUpdateEvent"; "textFieldDeleteEvent": "textFieldDeleteEvent"; "aswModelChange": "aswModelChange"; "duplicateControl": "duplicateControl"; }, never, never, false, never>;
}
