UNPKG

397 BTypeScriptView Raw
1import * as React from 'react';
2
3import { BsPrefixComponent } from './helpers';
4
5export interface FormCheckInputProps {
6 id?: string;
7 type?: 'checkbox' | 'radio';
8 isStatic?: boolean;
9 isValid?: boolean;
10 isInvalid?: boolean;
11 innerRef?: React.LegacyRef<this>;
12}
13
14declare class FormCheckInput extends BsPrefixComponent<
15 'input',
16 FormCheckInputProps
17> {}
18
19export default FormCheckInput;