/**
 * @export
 * @class AgentSessionResponse
 */
export declare class AgentSessionResponse {
    /**
     * Session ID (required)
     * @type {string}
     * @memberof AgentSessionResponse
     */
    sessionId?: string;
    /**
     * Agent application name (required)
     * @type {string}
     * @memberof AgentSessionResponse
     */
    appName?: string;
    /**
     * User ID (required)
     * @type {string}
     * @memberof AgentSessionResponse
     */
    userId?: string;
    constructor(obj?: Partial<AgentSessionResponse>);
}
export default AgentSessionResponse;
