export declare const cron: {
    defaultTimeZone: string;
    jobs: {
        myJob: {
            schedule: string;
            onTick: (app: any) => void;
            onComplete: (app: any) => void;
            start: boolean;
            timezone: string;
        };
    };
};
