import type { ElementRef, OverflowItem, OverflowLayoutHookProps } from "./overflowTypes"; type overflowUpdate = (item1: OverflowItem, item2: OverflowItem) => void; export declare const useOverflowLayout: ({ collectionHook, id, orientation, label, disableOverflow, }: OverflowLayoutHookProps) => [ElementRef, overflowUpdate]; export {};