/** @typedef {typeof __propDef.props} ImagesProps */ /** @typedef {typeof __propDef.events} ImagesEvents */ /** @typedef {typeof __propDef.slots} ImagesSlots */ export default class Images extends SvelteComponentTyped<{ class?: string; style?: {}; size?: string; }, { mount: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type ImagesProps = typeof __propDef.props; export type ImagesEvents = typeof __propDef.events; export type ImagesSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string; style?: {}; size?: string; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};