import { BlockProperties } from 'grapesjs'; import { SwiperComponentOptions as SwiperComponentOptionsSchema } from './typesSchema'; export interface SwiperComponentOptions extends Omit { block?: Partial | false; } export interface ComponentWindow extends Window { Swiper?: any; } export interface HTMLElementWithSwiper extends HTMLElement { __onLoad?: (swiper: any) => void; __activeSlide?: number; __inPreview?: boolean; }