mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 23:03:36 +01:00
13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
import { BsPrefixRefForwardingComponent } from './helpers';
|
|
|
|
export interface FormFileLabelProps {
|
|
htmlFor?: string;
|
|
}
|
|
|
|
declare interface FormFileLabel
|
|
extends BsPrefixRefForwardingComponent<'label', FormFileLabelProps> {}
|
|
|
|
declare const FormFileLabel: FormFileLabel;
|
|
|
|
export default FormFileLabel;
|