import { AppLogOption } from '../types/app-log-option';
export interface StaticServerAppConfig {
    readonly epsInstanceId: string;
    readonly staticServerId: string;
    readonly connectorAppDir: string;
    readonly logOption: AppLogOption;
    readonly staticServerPort: number;
    readonly staticServerRoutePrefix: string;
}
/**
 * Compose Extractor app config from process args and environment variables.
 */
export declare function getStaticServerAppConfig(): StaticServerAppConfig;
