/**
 * @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 { RadioButtonControl } from './radio-button-control';
import * as i0 from "@angular/core";
export declare class AswRadioButton {
    dialog: MatDialog;
    constants: any;
    /**
     * RadioButton control
     */
    control: RadioButtonControl | null;
    /**
     * RadioButton control index to help update or delete button from drop area
     */
    controlIndex: number;
    isPreviewTemplate: boolean;
    radioButtonUpdateEvent: EventEmitter<{
        control: RadioButtonControl;
        index: number;
    }>;
    radioButtonDeleteEvent: EventEmitter<number>;
    selectionChange: EventEmitter<RadioButtonControl>;
    duplicateControl: EventEmitter<RadioButtonControl>;
    constructor(dialog: MatDialog);
    deleteRadioButtonDialog(control: RadioButtonControl, controlIndex: number): void;
    editRadioButtonDialog(control: RadioButtonControl, controlIndex: number): void;
    onSelectionChange(control: RadioButtonControl): void;
    duplicateRadioButtonControl(control: RadioButtonControl): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<AswRadioButton, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<AswRadioButton, "asw-radio-button", never, { "control": { "alias": "control"; "required": false; }; "controlIndex": { "alias": "controlIndex"; "required": false; }; "isPreviewTemplate": { "alias": "isPreviewTemplate"; "required": false; }; }, { "radioButtonUpdateEvent": "radioButtonUpdateEvent"; "radioButtonDeleteEvent": "radioButtonDeleteEvent"; "selectionChange": "selectionChange"; "duplicateControl": "duplicateControl"; }, never, never, false, never>;
}
