UNPKG

430 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<
15 As extends React.ElementType = 'input'
16> extends BsPrefixComponent<As, FormCheckInputProps> {}
17
18export default FormCheckInput;