UNPKG

471 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}
12declare class Radio extends React.Component<Radio.RadioProps> {}
13export = Radio;
14
\No newline at end of file