export type SendToUserResult = { ok: true; } | { ok: false; reason: 'not_connected' | 'timeout' | 'send_failed'; error?: Error; }; export declare function sendToUser(id: any, message: any, timeoutMs?: number): Promise;