You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
309 B

  1. import { BsPrefixRefForwardingComponent } from './helpers';
  2. export interface FormCheckLabelProps {
  3. htmlFor?: string;
  4. }
  5. declare interface FormCheckLabel
  6. extends BsPrefixRefForwardingComponent<'label', FormCheckLabelProps> {}
  7. declare const FormCheckLabel: FormCheckLabel;
  8. export default FormCheckLabel;