export declare const moduleMap: { A11y: () => Promise; Autoplay: () => Promise; Controller: () => Promise; EffectCards: () => Promise; EffectCoverflow: () => Promise; EffectCreative: () => Promise; EffectCube: () => Promise; EffectFade: () => Promise; EffectFlip: () => Promise; FreeMode: () => Promise; Grid: () => Promise; HashNavigation: () => Promise; History: () => Promise; Keyboard: () => Promise; Manipulation: () => Promise; Mousewheel: () => Promise; Navigation: () => Promise; Pagination: () => Promise; Parallax: () => Promise; Scrollbar: () => Promise; Thumbs: () => Promise; Virtual: () => Promise; Zoom: () => Promise; }; export type ModuleName = keyof typeof moduleMap; /** * 动态获取 Swiper 模块 * @param moduleNames 模块名称数组 * @returns Promise */ export declare const loadSwiperModules: (moduleNames: ModuleName[]) => Promise; export declare const moduleConfigMap: { Pagination: { pagination: { el: string; clickable: boolean; }; }; Navigation: { navigation: { prevEl: string; nextEl: string; }; }; Scrollbar: { scrollbar: { el: string; draggable: boolean; }; }; Autoplay: { autoplay: { delay: number; disableOnInteraction: boolean; }; }; };