import { JSX } from "solid-js"; import { FeedbackType } from "./Feedback"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; export declare type FormCheckType = "checkbox" | "radio" | "switch"; export interface FormCheckProps extends BsPrefixProps, JSX.InputHTMLAttributes { inline?: boolean; disabled?: boolean; label?: JSX.Element; type?: FormCheckType; isValid?: boolean; isInvalid?: boolean; feedbackTooltip?: boolean; feedback?: JSX.Element; feedbackType?: FeedbackType; bsSwitchPrefix?: string; } declare const _default: BsPrefixRefForwardingComponent<"input", FormCheckProps> & { Input: BsPrefixRefForwardingComponent<"input", import("./FormCheckInput").FormCheckInputProps>; Label: (p: import("./FormCheckLabel").FormCheckLabelProps) => JSX.Element; }; export default _default;