1 | import * as React from "react";
|
2 |
|
3 | declare 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 | declare class Radio extends React.Component<Radio.RadioProps> {}
|
13 | export = Radio;
|
14 |
|
\ | No newline at end of file |