import { ElementProps, FloatingContext } from '@floating-ui/react'; export interface UseBlurProps { enabled?: boolean; } /** * Closes the floating element when the reference element loses focus and the newly focused element is outside of the floating element. */ export declare const useBlur: ({ onOpenChange, open, refs }: FloatingContext, { enabled }?: UseBlurProps) => ElementProps;