import { type MaybeRef } from 'vue'; /** * 递归获取滚动父级 * @param node - 节点 * @returns 滚动父级 */ export declare const getScrollParent: (node: HTMLElement | null | ParentNode) => HTMLElement | null; /** * 监听父级滚动 * @param domRef - 节点 * @returns 是否滚动 */ export declare const useParentScrolling: (domRef: MaybeRef) => { isScrolling: import("vue").ShallowRef; scrollParent: import("vue").ShallowRef; };