import type { FloatingLabelInputProps } from "../.."; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [FloatingLabelInputProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L829) * ## Props * @prop children * @prop id = idGenerator() * @prop value = $bindable() * @prop elementRef = $bindable() * @prop variant = "standard" * @prop size = "default" * @prop color = "default" * @prop class: className * @prop classes * @prop inputClass * @prop labelClass * @prop clearable * @prop clearableSvgClass * @prop clearableColor = "none" * @prop clearableClass * @prop clearableOnClick * @prop data = [] * @prop maxSuggestions = 5 * @prop onSelect * @prop comboClass * @prop placeholder * @prop ...restProps */ declare const FloatingLabelInput: import("svelte").Component; type FloatingLabelInput = ReturnType; export default FloatingLabelInput;