interface positionProps { style: { style: { inset: string; }; }; status: boolean; updatePosition: () => void; } interface optionProps { mouseEvent: 'click' | 'hover'; position: 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight'; offset: number; maxFixedHeight?: `${number}${'px' | 'rem'}`; horizontalPosition?: 'left' | 'right'; mobileBreakpoint?: `${number}${'px' | 'rem'}`; fullWidth: boolean; } export declare function usePositionedFloaters(positionedElement: T | null, referenceElement: T | null, options: optionProps): positionProps; export {};