import type { Theme } from "@emotion/react"; import type { RefObject } from "react"; export type ListStyle = { top: number; left: number; width: number; }; type GetListStyleParams = { theme: Theme; triggerRef: RefObject; menuRef: RefObject; document: Document; window: Window; }; export declare function getAutocompleteListStyle({ theme, triggerRef, menuRef, document, window, }: GetListStyleParams): ListStyle; export {};