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