import React from 'react'; import { InputProps } from 'antd'; interface FloatingLabelInputProps extends InputProps { id?: string; inline?: boolean; wrapperStyle?: React.CSSProperties; wrapperClassName?: string; } export default function FloatingLabelInput({ id, placeholder: propsPlaceholder, onFocus: propsOnFocus, onBlur: propsOnBlur, inline, wrapperStyle, wrapperClassName, ...rest }: FloatingLabelInputProps): import("react/jsx-runtime").JSX.Element; export {};