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#L723)
 * ## Props
 * @prop children
 * @prop id = idGenerator()
 * @prop value = $bindable()
 * @prop elementRef = $bindable()
 * @prop "aria-describedby": ariaDescribedby
 * @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 ...restProps
 */
declare const FloatingLabelInput: import("svelte").Component<FloatingLabelInputProps, {}, "value" | "elementRef">;
type FloatingLabelInput = ReturnType<typeof FloatingLabelInput>;
export default FloatingLabelInput;
