/** * Doc-action bodies for the `certs` capability — guidance the harness prints but * never runs. Homebrew and Docker daemon trust may vary by workstation, so those * trust steps are emitted as exact, copy-pasteable commands rather than executed * (the boundary: local-only execs go through `exec`; everything advisory is a * `doc`). Commands are quoted verbatim from the blueprint's Package Manager * Configuration Matrix so the generated guidance stays faithful. */ /** Guidance when no CA in the OS trust store matched the requested pattern. */ export declare function noCertDoc(pattern: string, shellFlag: string): string; /** Homebrew trust step (macOS). The path differs on Intel vs Apple Silicon. */ export declare function homebrewDoc(pemPath: string): string; /** Docker daemon trust differs by OS/engine and may require elevated access. */ export declare function dockerTrustDoc(pemPath: string, registryHost: string): string;