/** @typedef {typeof __propDef.props} SliderCaptionProps */ /** @typedef {typeof __propDef.events} SliderCaptionEvents */ /** @typedef {typeof __propDef.slots} SliderCaptionSlots */ export default class SliderCaption extends SvelteComponentTyped<{ title: any; description: any; buttonText?: string; buttonRoute?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type SliderCaptionProps = typeof __propDef.props; export type SliderCaptionEvents = typeof __propDef.events; export type SliderCaptionSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title: any; description: any; buttonText?: string; buttonRoute?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};