import { IChatSessionService } from '../../common/chatSessionService';
import { Event } from '../../../../util/vs/base/common/event';
export class TestChatSessionService implements IChatSessionService {
declare _serviceBrand: undefined;
get onDidDisposeChatSession(): Event<string> {
return Event.None;
}
}