UNPKG

@wfp/ui

Version:
16 lines (13 loc) 400 B
import * as React from 'react'; declare namespace RadioButton { interface RadioButtonProps extends React.InputHTMLAttributes<HTMLInputElement> { checked?: boolean; defaultChecked?: boolean; labelText: string; children?: React.ReactNode; value: string | number; } } declare class RadioButton extends React.Component<RadioButton.RadioButtonProps> {} export = RadioButton;