import { JSX } from "solid-js"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; declare type FormCheckInputType = "checkbox" | "radio"; export interface FormCheckInputProps extends BsPrefixProps, JSX.InputHTMLAttributes { type?: FormCheckInputType; isValid?: boolean; isInvalid?: boolean; } declare const FormCheckInput: BsPrefixRefForwardingComponent<"input", FormCheckInputProps>; export default FormCheckInput;