/** @typedef {typeof __propDef.props} PopupProps */ /** @typedef {typeof __propDef.events} PopupEvents */ /** @typedef {typeof __propDef.slots} PopupSlots */ export default class Popup extends SvelteComponentTyped<{ [x: string]: never; }, { [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: { [x: string]: never; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};