export declare const GENERATED_AGENT_SOURCE_MARKER = ".generated-agent-source.json"; /** Durable proof that Fleet itself created one exact Agent document. */ export declare function recordGeneratedAgentSource(stateDir: string, configPath: string, agentPath: string): void; /** * Verify exact generated-file ownership. Missing, malformed, or mismatched * state fails closed: shared v2 agents/ directories also contain hand-written * documents, so directory membership alone is never deletion authority. */ export declare function provesGeneratedAgentSource(stateDir: string, configPath: string | undefined, agentPath: string): boolean;