export declare const IInteractionService: import("../../../util/common/services").ServiceIdentifier; export interface IInteractionService { readonly _serviceBrand: undefined; readonly interactionId: string; startInteraction(): void; } /** * Simple service that tracks an interaction with a chat service * This is used for grouping requests to a logical interaction with the UI * It is just used for telemetry collection so is not 100% accurate, especially in the case of parallel interactions */ export declare class InteractionService implements IInteractionService { _serviceBrand: undefined; private _interactionId; startInteraction(): void; get interactionId(): string; } //# sourceMappingURL=interactionService.d.ts.map