UNPKG

431 BTypeScriptView Raw
1import * as React from 'react';
2
3declare namespace Checkbox {
4 export interface CheckboxProps extends React.HTMLProps<Checkbox> {
5 bsClass?: string;
6 disabled?: boolean;
7 inline?: boolean;
8 inputRef?: (instance: HTMLInputElement) => void;
9 validationState?: "success" | "warning" | "error";
10 }
11}
12declare class Checkbox extends React.Component<Checkbox.CheckboxProps> { }
13export = Checkbox;