interface MousewheelScrolling {
    (result: {
        direction: 'down' | 'up';
        delta: number;
    }): void;
}
interface MousewheelOptions {
    scrollingSpeed?: number;
    scrollDelay?: number;
}
declare function mousewheel(scrolling: MousewheelScrolling, options?: MousewheelOptions): {
    listener: (e: any) => false | undefined;
};

export { mousewheel };
