import React from 'react'; import { BsPrefixProps } from './helpers'; export interface FormCheckLabelProps extends React.LabelHTMLAttributes, BsPrefixProps { bsCustomPrefix?: string; } declare const FormCheckLabel: React.ForwardRefExoticComponent>; export default FormCheckLabel;