import { EventEmitter } from '@angular/core'; import { AbstractControl } from '@angular/forms'; import { DIRECTION_TYPE } from './enum'; import { Config, IRadioOptions } from './interface/IRadioOptions'; import * as i0 from "@angular/core"; type TSelected = string | number | null; export declare class RadioComponent { options: IRadioOptions[]; title: string | null; label: string | null; style: string; handleRadio: EventEmitter; direction: DIRECTION_TYPE; control: AbstractControl | any; defaultValue: string | number | null; styleTextDirection: string; config?: Config; descriptionTooltip: string; selected: TSelected; readonly infoCircle: import("lucide-angular").LucideIconData; handleSelected(selected: TSelected): void; isControlRequired(): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};