import type { voidFunction } from '../../types/global';
import type { scrollHook } from '../../types/hook';
export declare const slideEffectAction: (element: HTMLElement, scrollPosition: scrollHook) => void;
export declare const compactEffectAction: (element: HTMLElement) => {
    initCompactEffect: voidFunction<never>;
    updateCompactEffect: (scrollPosition: scrollHook) => void;
    destroyCompactEffect: voidFunction<never>;
};
export declare const mergeEffectAction: (element: HTMLElement) => void;
