UNPKG

362 BTypeScriptView Raw
1import React from 'react';
2import { BsPrefixProps } from './helpers';
3export interface FormCheckLabelProps extends React.LabelHTMLAttributes<HTMLLabelElement>, BsPrefixProps {
4 bsCustomPrefix?: string;
5}
6declare const FormCheckLabel: React.ForwardRefExoticComponent<FormCheckLabelProps & React.RefAttributes<HTMLLabelElement>>;
7export default FormCheckLabel;