import { autoUpdate, AutoUpdateOptions, FloatingElement, ReferenceElement } from '@floating-ui/dom';
/**
 * Enhances the autoUpdate function from floating-ui with additional element resize support
 */
export declare const autoUpdateFloatingElement: (reference: ReferenceElement | null, floating: FloatingElement | null, update: () => void, options?: Partial<AutoUpdateOptions>) => ReturnType<typeof autoUpdate>;
