UNPKG

305 BTypeScriptView Raw
1import * as React from 'react';
2
3import { BsPrefixComponent } from './helpers';
4
5export interface FormCheckLabelProps {
6 htmlFor?: string;
7 innerRef?: React.LegacyRef<this>;
8}
9
10declare class FormCheckLabel extends BsPrefixComponent<
11 'label',
12 FormCheckLabelProps
13> {}
14
15export default FormCheckLabel;