/** @typedef {typeof __propDef.props} PopupProps */ /** @typedef {typeof __propDef.events} PopupEvents */ /** @typedef {typeof __propDef.slots} PopupSlots */ export default class Popup extends SvelteComponentTyped<{ class?: any; popup?: any; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type PopupProps = typeof __propDef.props; export type PopupEvents = typeof __propDef.events; export type PopupSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: any; popup?: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};