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