import { type AgentConfig } from '../../../shared/agent-config.js'; export declare const AGENT_ID: RegExp; export declare function agentsDir(): string; export declare class AgentStore { private readonly agentId; private readonly file; constructor(agentId: string); exists(): boolean; path(): string; read(): Promise; write(agent: AgentConfig): Promise; remove(): Promise; } export declare class AgentRegistryStore { listIds(): Promise; } //# sourceMappingURL=agent.store.d.ts.map