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