import { AnimationEvent } from 'react'; /** * returns the animationHandler that needs to be bound on the * native element to detect if it is autofilling and returns that state. */ export declare function useAutofillEvent(): { isAutoFilled: boolean; onAnimationStart: (e: AnimationEvent) => void; };