/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ export interface AcknowledgedAgentsMap { [projectPath: string]: { [agentName: string]: string; }; } export declare class AcknowledgedAgentsService { private acknowledgedAgents; private loaded; load(): Promise; save(): Promise; isAcknowledged(projectPath: string, agentName: string, hash: string): Promise; acknowledge(projectPath: string, agentName: string, hash: string): Promise; }