/** @typedef {typeof __propDef.props} NotificationsProps */ /** @typedef {typeof __propDef.events} NotificationsEvents */ /** @typedef {typeof __propDef.slots} NotificationsSlots */ export default class Notifications extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type NotificationsProps = typeof __propDef.props export type NotificationsEvents = typeof __propDef.events export type NotificationsSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}