import { EventEmitter } from '@angular/core'; import { CustomRadioGroupConfig } from '../../public-api'; import * as i0 from "@angular/core"; export declare class CustomRadioGroupComponent { /** * @description the configuration for the custom radio options */ radioConfigurations: CustomRadioGroupConfig; /** * @description the callback method to be ran when a radio button is interacted with */ handleChange: EventEmitter>; /** * @author Alex Hodson * @description class constructor specifying the required services and properties for the component */ constructor(); /** * @author Alex Hodson * @description the method to be run when the component is rendered */ ngOnInit(): void; handleRadioChange(isSelected: boolean, idx: number): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }