import { LogLevel } from '../../../shared/logger/log-level'; import { TransportFormat } from './transport-format'; export declare type CommandOptionValues = { callerId: string; /** caller's process ID */ callerPid: string; logDir: string; logLevel: LogLevel; portFile: string; portRange: string; javaExe: string; oauthServiceJar: string; oauthServiceMain: string; oauthLogDir: string; oauthAuthRequired: boolean; useGalop: string; callerType: string; featureFlags: string; transportFormat: TransportFormat; staticServerUiDir: string; staticServerHandlersDir: string; staticServerPort: string | undefined; mockServer: string | undefined; };