/** @typedef {typeof __propDef.props} GalleryAutoscrollingProps */ /** @typedef {typeof __propDef.events} GalleryAutoscrollingEvents */ /** @typedef {typeof __propDef.slots} GalleryAutoscrollingSlots */ export default class GalleryAutoscrolling extends SvelteComponentTyped<{ settings: any; rounded?: string | undefined; color?: string | undefined; heading?: string | undefined; images?: string[] | undefined; objectFit?: string | undefined; page?: string | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type GalleryAutoscrollingProps = typeof __propDef.props; export type GalleryAutoscrollingEvents = typeof __propDef.events; export type GalleryAutoscrollingSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { settings: any; rounded?: string | undefined; color?: string | undefined; heading?: string | undefined; images?: string[] | undefined; objectFit?: string | undefined; page?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};