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