UNPKG

473 BTypeScriptView Raw
1import * as React from 'react';
2import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
3declare type FormCheckInputType = 'checkbox' | 'radio';
4export interface FormCheckInputProps extends BsPrefixProps, React.InputHTMLAttributes<HTMLInputElement> {
5 type?: FormCheckInputType;
6 isValid?: boolean;
7 isInvalid?: boolean;
8}
9declare const FormCheckInput: BsPrefixRefForwardingComponent<'input', FormCheckInputProps>;
10export default FormCheckInput;