import { JSX } from "solid-js"; import { FormCheckInputProps } from "./FormCheckInput"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; export interface InputGroupProps extends BsPrefixProps, JSX.HTMLAttributes { size?: "sm" | "lg"; hasValidation?: boolean; } declare const _default: BsPrefixRefForwardingComponent<"div", InputGroupProps> & { Text: BsPrefixRefForwardingComponent<"span", unknown>; Radio: (props: FormCheckInputProps) => JSX.Element; Checkbox: (props: FormCheckInputProps) => JSX.Element; }; export default _default;