/** * @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 { CdkDragDrop } from '@angular/cdk/drag-drop'; import { EventEmitter, OnChanges, OnInit } from '@angular/core'; import { MatDialog } from '@angular/material/dialog'; import { NotificationService } from '@asoftwareworld/form-builder/form-control/core'; import * as i0 from "@angular/core"; export declare class AswFormBuilder implements OnInit, OnChanges { dialog: MatDialog; private notificationService; step: number; constants: any; simpleControls: any[]; choiceControls: any[]; dateAndGpsControls: any[]; digitalControls: any[]; othersControls: any[]; formContainer: any[]; viewInitialized: boolean; uploadData: any[]; isShowPreviewButton: boolean; isShowJsonDataButton: boolean; isShowPublishButton: boolean; allowedTypes: 'number' | 'text' | 'all'; previewClick: EventEmitter; publishClick: EventEmitter; buttonClick: EventEmitter; aswModelChange: EventEmitter; constructor(dialog: MatDialog, notificationService: NotificationService); ngOnInit(): void; private showAllowedTypes; setStep(index: number): void; ngOnChanges(): void; drop(event: CdkDragDrop): void; updatedControl(data: any): void; deleteControl(index: any): void; previewTemplate(): void; previewJsonData(): void; publishTemplate(): void; buttonClicked(type: string): void; onSelectionChange(control: any): void; duplicateControl(control: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }