import { UseFloatingReturn, ReferenceType } from '@floating-ui/react-dom'; interface UseFloatingProps { zIndexValue?: number; shouldUpdate: boolean; } export declare const useFloating: ({ zIndexValue, shouldUpdate, }: UseFloatingProps) => { floatingStyles: import('react').CSSProperties & { zIndex: number; }; refs: { reference: import('react').MutableRefObject; floating: import('react').MutableRefObject; setReference: (node: T | null) => void; setFloating: (node: HTMLElement | null) => void; }; }; export {};