/** @typedef {typeof __propDef.props} LIghtBoxProps */ /** @typedef {typeof __propDef.events} LIghtBoxEvents */ /** @typedef {typeof __propDef.slots} LIghtBoxSlots */ export default class LIghtBox extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, {}> { } export type LIghtBoxProps = typeof __propDef.props; export type LIghtBoxEvents = typeof __propDef.events; export type LIghtBoxSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};