/** * Custom hook to detect if an element is horizontally scrollable * @param element The HTML element to check for horizontal scrollability * @returns boolean indicating if the element is horizontally scrollable */ export declare const useIsScrollable: (element: HTMLElement | null) => boolean;