import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { image: string; title: string; description: string; }; events: { [evt: string]: CustomEvent; }; slots: { title: {}; description: {}; }; }; export declare type SlickItemProps = typeof __propDef.props; export declare type SlickItemEvents = typeof __propDef.events; export declare type SlickItemSlots = typeof __propDef.slots; export default class SlickItem extends SvelteComponentTyped { } export {};