/** * Fire-and-forget push notification via Expo's push API. * Uses node:https directly (zero dependencies). Validates token format * before sending. Logs result but never throws. */ export declare function sendPushNotification(token: string, title: string, body: string, data?: Record): void;