import { EventEmitter, OnChanges, OnInit, SimpleChanges } from "@angular/core";
import { ControlValueAccessor, FormControl, FormGroup } from "@angular/forms";
import { Subscription } from "rxjs";
import { TKwikUIInputRadioOrientation, TKwikUIInputRadioSize } from "./input-radio.definitions";
import * as i0 from "@angular/core";
export declare class KwikUIInputRadioComponent implements OnInit, OnChanges, ControlValueAccessor {
    disabled: boolean;
    focus: boolean;
    formControl: FormControl;
    formControlName: string;
    id: string;
    invalid: boolean;
    items: Array<any>;
    label: string;
    orientation: TKwikUIInputRadioOrientation;
    placeholder: string;
    properties: {
        readOnly: boolean;
    };
    size: TKwikUIInputRadioSize;
    validators: {
        required: boolean;
    };
    getKeyValue: EventEmitter<any>;
    formGroup: FormGroup;
    subscriptions: Subscription;
    constructor();
    ngOnInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
    ngOnDestroy(): void;
    private validateInputProperty;
    /**
     * @description Handles setting up of error and focus on the input field is it is invalid
     */
    private setDisabled;
    /**
     * @description disabledItemHandler
     */
    disabledItemHandler(e: any): any;
    /**
     * @description Handles setting up of error and focus on the input field is it is invalid
     */
    private setError;
    /**
     * @description Handles firing of 2 events on (keyup) event
     *
     * @param value
     */
    handleValueChange(value: any): void;
    handleFocusedChange(e: any): void;
    private emitEvent;
    /** Method Implementations for Abstract Control */
    writeValue(value: any): void;
    registerOnChange(fn: any): void;
    registerOnTouched(fn: any): void;
    setDisabledState?(isDisabled: boolean): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<KwikUIInputRadioComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<KwikUIInputRadioComponent, "kwikui-input-radio", never, { "disabled": "disabled"; "focus": "focus"; "formControl": "formControl"; "formControlName": "formControlName"; "id": "id"; "invalid": "invalid"; "items": "items"; "label": "label"; "orientation": "orientation"; "placeholder": "placeholder"; "properties": "properties"; "size": "size"; "validators": "validators"; }, { "getKeyValue": "getKeyValue"; }, never, never>;
}
