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