/** @typedef {typeof __propDef.props} CarouselProps */ /** @typedef {typeof __propDef.events} CarouselEvents */ /** @typedef {typeof __propDef.slots} CarouselSlots */ export default class Carousel extends SvelteComponentTyped<{ options: any; autoScroll: any; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type CarouselProps = typeof __propDef.props; export type CarouselEvents = typeof __propDef.events; export type CarouselSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { options: any; autoScroll: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};