import { SvelteComponentTyped } from "svelte"; import type { ICarouselSlickData } from '../interfaces/ICarouselSlickData'; declare const __propDef: { props: { [x: string]: any; title: string; textButton?: string; showIndicators?: boolean; data?: ICarouselSlickData[]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type SliderPickerProps = typeof __propDef.props; export declare type SliderPickerEvents = typeof __propDef.events; export declare type SliderPickerSlots = typeof __propDef.slots; export default class SliderPicker extends SvelteComponentTyped { } export {};