import { CallerType } from '../../shared/enums/caller-type';
import { NetworkAdapterOptions } from '../modules/network-adapter';
import { I18nConfig } from './i18n-config';
import { StaticServerOptions } from './static-server-options';
export interface EpsApiOptions {
    browserWatcherPort?: number;
    staticServerOptions?: StaticServerOptions;
    epsApiPort: number;
    callerId: string;
    callerType: CallerType;
    epsInstanceId: string;
    networkOptions: NetworkAdapterOptions;
    i18n: I18nConfig;
}
