import { Swiper, SwiperEvents } from 'swiper/types'; export declare enum SlideTransitionTrigger { mousewheel = "mousewheel", touch = "touch", keyPress = "keyPress" } export declare const isKeyboardPluginEnabled: boolean; export declare const SLIDE_TRANSITION_SPEED_MS = 600; /** * The swiper.js mousewheel module doesn't give us enough control over the mousewheel event, such as: * - Setting the transition speed to SLIDE_TRANSITION_SPEED_MS * - Preventing the swiper from updating more than one slide at a time */ declare function CustomMousewheelPlugin({ swiper, on, }: { swiper: Swiper; on: (event: keyof SwiperEvents, handler: (swiper: Swiper, ...args: unknown[]) => void) => void; }): void; export { CustomMousewheelPlugin as default };