import { SentryMonitorConfig } from "./sentry";
export type CreateCronjobSettings = {
    cronName: string;
    schoolCode: string;
    hostName: string;
    cronTime: string;
    taskService: any;
    monitorConfig: SentryMonitorConfig;
};
export type ServiceItem = {
    monitorConfig: SentryMonitorConfig;
    taskService: any;
    cronName: string;
    cronTime: string;
};
