/**
 * @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 { ElementRef, EventEmitter, OnInit } from '@angular/core';
import { NotificationService } from '@asoftwareworld/form-builder-pro/common';
import { CSSFrameworkEnum } from '@asoftwareworld/form-builder-pro/api';
import { AswTranslateService } from '@asoftwareworld/form-builder-pro/core';
import * as i0 from "@angular/core";
export declare class AswPreviewTemplate implements OnInit {
    translate: AswTranslateService;
    private notificationService;
    constants: any;
    formContainer: any[];
    currentLanguage: string;
    cssFramework: CSSFrameworkEnum;
    buttonClick: EventEmitter<any[]>;
    aswModelChange: EventEmitter<any>;
    printPdf: ElementRef;
    constructor(translate: AswTranslateService, notificationService: NotificationService);
    ngOnInit(): void;
    updatedControl(control: any): void;
    private updateControlFromContainer;
    private updateChildControl;
    buttonClicked(type: string): void;
    onSelectionChange(control: any): void;
    makePdf(): Promise<void>;
    static ɵfac: i0.ɵɵFactoryDeclaration<AswPreviewTemplate, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<AswPreviewTemplate, "asw-preview-template", never, { "formContainer": { "alias": "formContainer"; "required": false; }; "currentLanguage": { "alias": "currentLanguage"; "required": false; }; "cssFramework": { "alias": "cssFramework"; "required": false; }; }, { "buttonClick": "buttonClick"; "aswModelChange": "aswModelChange"; }, never, never, false, never>;
}
