/** @typedef {typeof __propDef.props} SubscriptionProps */ /** @typedef {typeof __propDef.events} SubscriptionEvents */ /** @typedef {typeof __propDef.slots} SubscriptionSlots */ export default class Subscription extends SvelteComponent<{ subscription: any; active: any; }, { orderOperation: CustomEvent; } & { [evt: string]: CustomEvent; }, {}> { } export type SubscriptionProps = typeof __propDef.props; export type SubscriptionEvents = typeof __propDef.events; export type SubscriptionSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { subscription: any; active: any; }; events: { orderOperation: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export {};