/**
 * @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 { ControlOption, CSSFrameworkEnum } from '@asoftwareworld/form-builder-pro/api';
import * as i0 from "@angular/core";
export declare class AswDragDrop {
    control: any;
    formContainer: any[];
    CSSFramework: CSSFrameworkEnum;
    propertyPersonalization: string[];
    patterns: ControlOption[];
    controlUpdated: EventEmitter<any>;
    controlDeleted: EventEmitter<number>;
    controlDuplicate: EventEmitter<any>;
    controlChange: EventEmitter<any>;
    buttonClick: EventEmitter<string>;
    updatedControl(control: any): void;
    deleteControl(control: any): void;
    duplicateControl(control: any): void;
    onSelectionChange(control: any): void;
    buttonClicked(type: string): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<AswDragDrop, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<AswDragDrop, "asw-drag-drop", never, { "control": { "alias": "control"; "required": false; }; "formContainer": { "alias": "formContainer"; "required": false; }; "CSSFramework": { "alias": "CSSFramework"; "required": false; }; "propertyPersonalization": { "alias": "propertyPersonalization"; "required": false; }; "patterns": { "alias": "patterns"; "required": false; }; }, { "controlUpdated": "controlUpdated"; "controlDeleted": "controlDeleted"; "controlDuplicate": "controlDuplicate"; "controlChange": "controlChange"; "buttonClick": "buttonClick"; }, never, never, false, never>;
}
