import { EventEmitter } from '@angular/core'; import { Option } from '../../../models/shared/radio-button'; import * as i0 from "@angular/core"; export declare class RadioButtonsComponent { /** Label of group of radio buttons */ /** Assigning unique group name to input to relate with each other */ groupName: string; isDescription: boolean; alignment: 'horizontal' | 'vertical'; /** Property to hold the default selected option value */ defaultSelectedValue: string | number | null; /** * Property to emit selected option value to parent comp */ clickEvent: EventEmitter; /** * Property to hold option values in object format * Title is key used to display the property in dropdown */ optionList: Option[]; constructor(); selectedOption(option: Option): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }