/**
 * @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 { MatSlideToggleChange } from '@angular/material/slide-toggle';
import { SlideToggleControl } from './slide-toggle-control';
import * as i0 from "@angular/core";
export declare class AswSlideToggle {
    dialog: MatDialog;
    constants: any;
    /**
     * SlideToggle control
     */
    control: SlideToggleControl | null;
    /**
     * SlideToggle control index to help update or delete button from drop area
     */
    controlIndex: number;
    isPreviewTemplate: boolean;
    slidetoggleUpdateEvent: EventEmitter<{
        control: SlideToggleControl;
        index: number;
    }>;
    slidetoggleDeleteEvent: EventEmitter<number>;
    selectionChange: EventEmitter<SlideToggleControl>;
    duplicateControl: EventEmitter<SlideToggleControl>;
    constructor(dialog: MatDialog);
    deleteSlideToggleDialog(control: SlideToggleControl, controlIndex: number): void;
    editSlideToggleDialog(control: SlideToggleControl, controlIndex: number): void;
    onChange(event: MatSlideToggleChange, control: SlideToggleControl): void;
    duplicateSlideToggleControl(control: SlideToggleControl): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<AswSlideToggle, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<AswSlideToggle, "asw-slide-toggle", never, { "control": { "alias": "control"; "required": false; }; "controlIndex": { "alias": "controlIndex"; "required": false; }; "isPreviewTemplate": { "alias": "isPreviewTemplate"; "required": false; }; }, { "slidetoggleUpdateEvent": "slidetoggleUpdateEvent"; "slidetoggleDeleteEvent": "slidetoggleDeleteEvent"; "selectionChange": "selectionChange"; "duplicateControl": "duplicateControl"; }, never, never, false, never>;
}
