import { CronJobMetric } from "./types";
export declare class CronMonitor {
    private metricsService?;
    private loggingService?;
    private getMetricsService;
    private getLoggingService;
    static monitor(jobName: string): (target: unknown, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;
    recordJob(metric: CronJobMetric): void;
}
