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