export declare enum DaprConfigKeys { DAPR_ENABLE = "DAPR_ENABLE", DAPR_MODE = "DAPR_MODE", DAPR_HOST = "DAPR_HOST", DAPR_GRPC_PORT = "DAPR_GRPC_PORT", DAPR_HTTP_PORT = "DAPR_HTTP_PORT" } export declare class DaprConfigObject { static logger: import("@nestjs/common").Logger; enable: boolean; mode: 'http' | 'grpc'; port: number; host: string; constructor(o: Partial); static load(): DaprConfigObject; }