interface EmitOptions { sid?: string; uid?: string; room?: string; } declare const socket: { emit(event: string, data: unknown, options?: EmitOptions): Promise; }; type Socket = typeof socket; export { type Socket, socket };