UNPKG

512 BTypeScriptView Raw
1import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
2declare type FormCheckInputType = 'checkbox' | 'radio';
3export interface FormCheckInputProps extends BsPrefixProps {
4 id?: string;
5 bsCustomPrefix?: string;
6 type?: FormCheckInputType;
7 isStatic?: boolean;
8 isValid?: boolean;
9 isInvalid?: boolean;
10}
11declare type FormCheckInput = BsPrefixRefForwardingComponent<'input', FormCheckInputProps>;
12declare const FormCheckInput: FormCheckInput;
13export default FormCheckInput;