/** @typedef {typeof __propDef.props} GalleryImagesProps */ /** @typedef {typeof __propDef.events} GalleryImagesEvents */ /** @typedef {typeof __propDef.slots} GalleryImagesSlots */ export default class GalleryImages extends SvelteComponentTyped<{ images?: any[]; }, { [evt: string]: CustomEvent; }, {}> { } export type GalleryImagesProps = typeof __propDef.props; export type GalleryImagesEvents = typeof __propDef.events; export type GalleryImagesSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { images?: any[]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};