mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
13 lines
309 B
TypeScript
13 lines
309 B
TypeScript
import { BsPrefixRefForwardingComponent } from './helpers';
|
|
|
|
export interface FormCheckLabelProps {
|
|
htmlFor?: string;
|
|
}
|
|
|
|
declare interface FormCheckLabel
|
|
extends BsPrefixRefForwardingComponent<'label', FormCheckLabelProps> {}
|
|
|
|
declare const FormCheckLabel: FormCheckLabel;
|
|
|
|
export default FormCheckLabel;
|