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