UNPKG

411 BTypeScriptView Raw
1import * as React from 'react';
2
3declare namespace Radio {
4 export interface RadioProps extends React.HTMLProps<Radio> {
5 bsClass?: string;
6 disabled?: boolean;
7 inline?: boolean;
8 inputRef?: (instance: HTMLInputElement) => void;
9 validationState?: "success" | "warning" | "error";
10 }
11
12}
13declare class Radio extends React.Component<Radio.RadioProps> { }
14export = Radio;