import { ChangeDetectorRef, OnInit } from '@angular/core';
import { RadioColor, RadioGroupAccessor, RadioValue } from './radio.types';
import { BooleanInput } from '@angular/cdk/coercion';
import * as i0 from "@angular/core";
export declare class RadioComponent implements OnInit {
    private group;
    private cdr;
    static ngAcceptInputType_disabled: BooleanInput;
    disabled: boolean;
    value: RadioValue;
    color?: RadioColor;
    get selected(): boolean;
    get isDisabled(): boolean;
    get styles(): {
        [klass: string]: boolean;
    };
    constructor(group: RadioGroupAccessor, cdr: ChangeDetectorRef);
    ngOnInit(): void;
    private _click;
    static ɵfac: i0.ɵɵFactoryDeclaration<RadioComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<RadioComponent, "xui-radio", never, { "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, ["*"], false, never>;
}
