import { Socket } from 'socket.io';
import { SocketUser } from './socket-user.type';
import { ParsedAgent } from '../context/agent';
export type AuthenticatedSocket = Socket & {
    data: {
        user?: SocketUser;
        agent?: ParsedAgent | null;
        conversation?: {
            roomKey: string;
            jobId?: string | null;
            candidateId: string;
            enterpriseId?: string | null;
            chatId?: number | null;
        };
    };
};
