import { RUN_TYPE } from "src/lib/types/cronjob-manager";
import { PHXGrpcClientSystemService } from "src/module/grpc-client/grpc-client-system.service";
export declare class PHXConfigByHostNameService {
    private readonly grpcClientSystemService;
    private readonly logger;
    constructor(grpcClientSystemService: PHXGrpcClientSystemService);
    checkCronjobEnable({ runType, cronName, listCronName, }: {
        runType: RUN_TYPE;
        cronName: string;
        listCronName: string[];
    }): boolean;
    getCronConfig(): Promise<any>;
}
