UNPKG

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