/** @typedef {typeof __propDef.props} StrongProps */ /** @typedef {typeof __propDef.events} StrongEvents */ /** @typedef {typeof __propDef.slots} StrongSlots */ export default class Strong extends SvelteComponentTyped<{ data: any; settings: any; }, { [evt: string]: CustomEvent; }, {}> { } 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: { data: any; settings: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};