import { Command } from '@oclif/core'; import type { Interfaces } from '@oclif/core'; import type * as SDK from 'balena-sdk'; type FlagsDef = Interfaces.InferredFlags; interface EnvironmentVariableInfo extends SDK.EnvironmentVariableBase { fleet?: string | null; deviceUUID?: string; serviceName?: string; } export default class EnvListCmd extends Command { static enableJsonFlag: boolean; static description: string; static examples: string[]; static flags: { fleet: Interfaces.OptionFlag; config: Interfaces.BooleanFlag; device: Interfaces.OptionFlag; service: Interfaces.OptionFlag; }; run(): Promise; protected printVariables(varArray: EnvironmentVariableInfo[], options: FlagsDef): Promise; } export {};