import { JSX } from "solid-js"; import { BsPrefixProps } from "./helpers"; export interface FormCheckLabelProps extends JSX.LabelHTMLAttributes, BsPrefixProps { } declare const FormCheckLabel: (p: FormCheckLabelProps) => JSX.Element; export default FormCheckLabel;