import { SvelteComponentTyped } from "svelte"; import type { ICarouselSlickData } from '../interfaces/ICarouselSlickData'; declare const __propDef: { props: { autoHeight?: boolean; data?: ICarouselSlickData[]; showHideItems?: boolean; showIndicators?: boolean; }; events: { click: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { top: { onClickRight: () => void; onClickLeft: () => void; item: any; index: any; itemIndex: number; }; default: { item: ICarouselSlickData; index: any; currentIndex: import("svelte/store").Writable; }; }; }; export declare type CarouselSlickProps = typeof __propDef.props; export declare type CarouselSlickEvents = typeof __propDef.events; export declare type CarouselSlickSlots = typeof __propDef.slots; export default class CarouselSlick extends SvelteComponentTyped { } export {};