import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { images?: string[]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type CarouselProps = typeof __propDef.props; export declare type CarouselEvents = typeof __propDef.events; export declare type CarouselSlots = typeof __propDef.slots; export default class Carousel extends SvelteComponentTyped { } export {};