UNPKG

nd-gui

Version:

UI components for NetDocuments

20 lines (19 loc) 521 B
import { OnInit, EventEmitter } from '@angular/core'; export declare class RadioButtonComponent implements OnInit { name: string; value: any; label: string; disabled: boolean; tabindex: number; inputId: string; style: object; styleClass: string; labelStyleClass: string; selected: string; selectedChange: EventEmitter<string>; onClick: EventEmitter<boolean>; modelState: string; constructor(); ngOnInit(): void; onClickHandler(): void; }