interface GetCoordsProps { buttonRef: React.RefObject; containerRef: React.RefObject; useAutoPosition: boolean; } /** * Calculates the position for a dropdown element relative to the button and container references. * * @param {Ref} buttonRef Reference to the button element * @param {Ref} containerRef Reference to the container element * @param {boolean} useAutoPosition Flag indicating whether to automatically position the dropdown * @returns Object with the calculated left, top, marginTop, and width values for the dropdown position */ export declare function getCoords({ buttonRef, containerRef, useAutoPosition, }: GetCoordsProps): { left: number; top: number; marginTop: number; width: number; } | null; export {};