import React from 'react'; import { BsPrefixAndClassNameOnlyProps, BsPrefixRefForwardingComponent } from './helpers'; export interface FormFileLabelProps extends BsPrefixAndClassNameOnlyProps { htmlFor?: string; label?: React.ReactNode; button?: React.ReactNode; } declare type FormFileLabel = BsPrefixRefForwardingComponent<'label', FormFileLabelProps>; declare const FormFileLabel: FormFileLabel; export default FormFileLabel;