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