UNPKG

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