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