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