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