export declare const ServiceType: { readonly EDGE: "edge"; readonly INTERNAL: "internal"; readonly BACKGROUND: "background"; readonly REMOTE: "remote"; }; export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType]; export declare const SERVICE_TYPES: readonly ServiceType[]; export declare const ServiceMode: { readonly CLUSTER: "cluster"; }; export type ServiceMode = (typeof ServiceMode)[keyof typeof ServiceMode]; export declare const SERVICE_MODES: readonly ServiceMode[]; export declare const RoutingStrategyName: { readonly ROUND_ROBIN: "round-robin"; readonly HASH: "hash"; readonly LEAST_PENDING: "least-pending"; readonly BROADCAST: "broadcast"; readonly PRIMARY: "primary"; }; export type RoutingStrategyName = (typeof RoutingStrategyName)[keyof typeof RoutingStrategyName]; export declare const ROUTING_STRATEGY_NAMES: readonly RoutingStrategyName[]; export declare const RegistryMode: { readonly EMBEDDED: "embedded"; readonly MULTICAST: "multicast"; readonly EXTERNAL: "external"; }; export type RegistryMode = (typeof RegistryMode)[keyof typeof RegistryMode]; export declare const REGISTRY_MODES: readonly RegistryMode[]; export declare const LogLevel: { readonly TRACE: "trace"; readonly DEBUG: "debug"; readonly INFO: "info"; readonly WARN: "warn"; readonly ERROR: "error"; readonly FATAL: "fatal"; readonly SILENT: "silent"; }; export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel]; export declare const LOG_LEVELS: readonly LogLevel[]; //# sourceMappingURL=config-enums.d.ts.map