/** * peac discover command * * Performs SSRF-aware retrieval of /.well-known/peac.txt and parses it as a * peac-policy/0.1 policy document. Implementation lives in the CLI-internal * helper at ../lib/policy-document-discovery.ts (not a public surface). * * peac.txt is a policy-document surface per docs/specs/PEAC-TXT.md. For * cryptographic key discovery, callers should use * /.well-known/peac-issuer.json (see docs/specs/PEAC-ISSUER.md). */ import type { CLIOptions, CommandResult } from '../types.js'; export declare class DiscoverCommand { execute(url: string, _options?: CLIOptions): Promise; } //# sourceMappingURL=discover.d.ts.map