/** * Shared date formatting utilities for Nostr components */ /** * Formats a Unix timestamp to a readable date string * @param createdAt Unix timestamp in seconds * @returns Formatted date string (e.g., "Jan 15, 2024") */ export declare function formatEventDate(createdAt: number | undefined): string;