import { SimplePool } from '@nostr/tools/pool'; import { NostrUser } from '@nostr/gadgets/metadata'; import type { WindowNostr } from '@nostr/tools/nip07'; export declare const pool: SimplePool; export declare function fetchNostrUser(pubkey: string, relays: string[]): Promise; export declare function getOutboxRelaysFor(pubkey: string): Promise; export declare function getInboxRelaysFor(pubkey: string): Promise; export declare function inputToPubkey(input: string): Promise<[string, string[]] | [undefined]>; export declare function getWindowNostr(): Promise;