import { JSX } from "solid-js"; import { FormGroupProps } from "./FormGroup"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; export interface FloatingLabelProps extends FormGroupProps, BsPrefixProps { controlId?: string; label: JSX.Element; } declare const FloatingLabel: BsPrefixRefForwardingComponent<"div", FloatingLabelProps>; export default FloatingLabel;