import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { scannedNpub: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ScanNpubProps = typeof __propDef.props; export type ScanNpubEvents = typeof __propDef.events; export type ScanNpubSlots = typeof __propDef.slots; export default class ScanNpub extends SvelteComponentTyped { } export {};