import { CallerType } from '../../../shared/enums/caller-type'; import { LogLevel } from '../../../shared/logger/log-level'; import { OAuthServiceManagerOptions } from '../../../shared/types/oauth-service-manager-options'; import { StaticServerOptions } from '../../../shared/types/static-server-options'; import { EpsAppDebugOptions } from './eps-app-debug-options'; import { TransportFormat } from './transport-format'; export declare type EpsAppOptions = { callerId: string; debug: EpsAppDebugOptions; epsInstanceId: string; hostName: string; logDir: string; logLevel: LogLevel; oauthServiceManagerOptions: OAuthServiceManagerOptions; parentPid: number; portFilePath: string; portRange: string[]; staticServerOptions: StaticServerOptions; callerType: CallerType; transportFormat: TransportFormat; mockServer: string | undefined; };