import React from 'react'; declare type UseMenuScrollIndicatorsOptions = { isOpen: boolean; scrollPaneRef: React.RefObject; itemRef: React.RefObject; topScrollIndicatorRef: React.RefObject; bottomScrollIndicatorRef: React.RefObject; }; export declare function useMenuScrollIndicators({ isOpen, scrollPaneRef, itemRef, topScrollIndicatorRef, bottomScrollIndicatorRef, }: UseMenuScrollIndicatorsOptions): void; export {};