import type { ComputedRef, CSSProperties } from 'vue'; import type { DkScrollbarType } from '../../dkscrollbar/src/props'; import type { ClassListName } from '../../_interface'; interface LinkType { classList: ComputedRef; styleList: CSSProperties; wrapperClassList: ComputedRef; } export declare const getDkScroll: (props: DkScrollbarType) => LinkType; export {};