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