UNPKG

493 BTypeScriptView Raw
1import * as React from 'react';
2
3declare 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}
12declare class Checkbox extends React.Component<Checkbox.CheckboxProps> { }
13export = Checkbox;
14
\No newline at end of file