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