/** * Config CLI Commands * * Commands for managing photon instances and environment configuration: * - use: Switch to a named instance of a stateful photon * - instances: List all instances of a stateful photon * - set: Configure environment variables for a photon */ import type { Command } from 'commander'; /** * Register config-related commands: use, instances, set */ export declare function registerConfigCommands(program: Command): void; //# sourceMappingURL=config.d.ts.map