export declare const isElementScrollable: (el: Element) => boolean;
export declare const getFirstScrollableElement: ({ element, parentsToStop, }: {
    element: Element | null;
    parentsToStop: (Element | null)[];
}) => Element | null;
