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