import { kinds, KnownEvent, NostrEvent } from "./event.js"; /** Type for NIP-65 relay list events */ export type MailboxesEvent = KnownEvent; export declare const MailboxesInboxesSymbol: unique symbol; export declare const MailboxesOutboxesSymbol: unique symbol; /** Parses a 10002 event and stores the inboxes in the event using the {@link MailboxesInboxesSymbol} symbol */ export declare function getInboxes(event: NostrEvent): string[]; /** Parses a 10002 event and stores the outboxes in the event using the {@link MailboxesOutboxesSymbol} symbol */ export declare function getOutboxes(event: NostrEvent): string[]; /** Checks if an event is a valid mailboxes event */ export declare function isMailboxesEvent(event: any): event is MailboxesEvent;