import type { FleetAuditPresentation } from '../fleet-command-audit.js'; /** Lifecycle-only return path for a trusted worker; never authorizes a fresh Fleet attempt. */ export declare const FLEET_WORKER_LIFECYCLE_STATE_DIR_ENV = "OURS_FLEET_WORKER_LIFECYCLE_STATE_DIR"; export declare function fleetWorkerEnv(source?: NodeJS.ProcessEnv): Record; /** Present a detached worker's durable outcome through the authenticated Owner sink. */ export declare function presentFleetWorkerLifecycle(presentations: FleetAuditPresentation[], deps?: { now(): number; sleep(ms: number): Promise; }): Promise; /** Launch a Fleet CLI operation outside the caller's supervisor/session lifecycle. */ export declare function launchFleetWorker(args: string[], operation: string, configPath?: string): Promise;