import { type BootstrapStatus } from './bootstrap'; export interface PlatformFleetVerificationRuntime { uid(): number; bootstrapStatus(): Promise; characterDevice(path: string): boolean; exec(argv: readonly string[]): Promise<{ exitCode: number; output: string; }>; } export interface PlatformFleetVerificationResult { ok: true; agentVersion: string; bootstrap: BootstrapStatus; sevGuest: true; failedUnits: readonly never[]; } /** One closed, read-only host proof used by the operator fleet rehearsal. */ export declare function verifyPlatformFleetHost(expectedVersion: string, runtime?: PlatformFleetVerificationRuntime): Promise;