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