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