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