import type { FleetConfig, ResolvedRole } from './config.js'; export declare const RESOLVED_PLAN_SCHEMA_VERSION = 2; export declare const redactSensitive: (value: unknown, key?: string) => unknown; /** Stable, secret-safe machine contract consumed by config JSON and spawn dry-run. */ export declare function resolvedPlan(cfg: FleetConfig): Record; export declare function resolvedRolePlan(role: ResolvedRole, manifestDir?: string): Record;