import { default as React } from 'react'; type FloatingLabelVariant = 'outlined' | 'filled' | 'underlined'; type FloatingLabelSize = 'sm' | 'md' | 'lg'; interface FloatingLabelInputProps extends Omit, 'size'> { label: string; helperText?: React.ReactNode; errorText?: React.ReactNode; variant?: FloatingLabelVariant; size?: FloatingLabelSize; fullWidth?: boolean; leadingIcon?: React.ReactNode; trailingIcon?: React.ReactNode; invalid?: boolean; rootClassName?: string; } declare const FloatingLabelInput: React.ForwardRefExoticComponent>; export { FloatingLabelInput }; export type { FloatingLabelInputProps, FloatingLabelVariant, FloatingLabelSize };