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