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