import type { ForgeZeroLaunchOwnerInput } from './platform-launch-profile'; export interface PlatformLaunchEnvironmentInput { owner: ForgeZeroLaunchOwnerInput; emailSecret: string; cloudflareTunnelToken: string; cloudflareApiToken: string; } /** * Read the development-only attended-launch adapter. * * The file may contain the API's ordinary non-secret environment as well; this * reader selects only the fixed bootstrap coordinates below. Secret values are * returned to the caller for immediate systemd-creds sealing and are never * copied into the API environment rendered on a target. */ export declare function readPlatformLaunchEnvironment(path: string): PlatformLaunchEnvironmentInput;