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