import { scrollContainerDom } from '../common/constants.js'; export declare class XSwiper extends HTMLElement { #private; static notToFilterFalseAttributes: Set; get currentIndex(): number; set currentIndex(newval: number); get snapDistance(): number; get isVertical(): boolean; get circularPlay(): boolean; scrollTo(options: { /** * @description target index */ index: number; /** * @description Whether there is switching animation * @defaultValue true */ smooth?: boolean; }): void; scrollTo(options?: ScrollToOptions | undefined): void; scrollTo(x: number, y: number): void; connectedCallback(): void; get [scrollContainerDom](): this; }