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