import React, { RefObject } from 'react'; /** * useScrollSync returns scroll event handler to be attached to synchronised scroll elements. * * For example * const handleScroll = useScrollSync([ref1, ref2]); *
*
*/ export declare function useScrollSync(refs: Array>, disabled?: boolean): ((event: React.UIEvent) => void) | undefined; //# sourceMappingURL=index.d.ts.map