import type { ComputedRef, Ref } from 'vue'; declare type Recordable = Record; interface ComponentElRef { $el: T; } declare type ComponentRef = ComponentElRef | null; export declare function useTableScrollTo(tableElRef: Ref, getDataSourceRef: ComputedRef): { scrollTo: (pos: string) => void; }; export {};