import { ApplicationConfig, DatabaseConfig, HttpClientConfig, HttpServerConfig, IAMConfiguration, LoggingConfiguration, TlsConfig } from '@5minds/processcube_engine_sdk'; declare const Configuration: { initialize: (configPath: string, releaseChannel: string) => void; get: (key: string) => TValue; application: () => ApplicationConfig; httpServer: () => HttpServerConfig; httpClient: () => HttpClientConfig; tls: () => TlsConfig; logging: () => LoggingConfiguration; database: () => DatabaseConfig; iam: () => IAMConfiguration; custom: () => Record; }; export default Configuration;