import * as React from 'react'; import { InputProps } from '../components/Input'; import { BaseTransition } from './transitions'; import { PropsWithInnerRef } from '../types'; export type AnimatedInputProps = BaseTransition & PropsWithInnerRef & InputProps; export function AnimatedInput( WrappedComponent: React.ComponentType, ): React.ComponentType; export default AnimatedInput;