import { OnInit } from '@angular/core'; import { FInputComponent } from '../f-input/f-input.component'; import * as i0 from "@angular/core"; /** * */ export interface FRadiobuttonOption { label: string; value: string; checked?: boolean; } /** * F-Radiobutton */ export declare class FRadiobuttonComponent extends FInputComponent implements OnInit { static readonly cmpName: string; inline: boolean; options: FRadiobuttonOption[]; ngOnInit(): void; classes(namespace: string): string; /** * Sets the currently selected value to the form control. * * @param index - Index of currently selected value. */ setValue(option: FRadiobuttonOption): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }