import { CronJobParams } from 'cron';
/**
 * Reference links: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/cron/index.d.ts
 *
 * @publicApi
 */
export type CronOptions = {
    /**
     * Specify the name of your cron job. This will allow to inject your cron job reference through `@InjectCronRef`.
     */
    name?: string;
    /**
     * Specify the timezone for the execution. This will modify the actual time relative to your timezone. If the timezone is invalid, an error is thrown. You can check all timezones available at [Moment Timezone Website](http://momentjs.com/timezone/). Probably don't use both ```timeZone``` and ```utcOffset``` together or weird things may happen.
     */
    timeZone?: unknown;
    /**
     * This allows you to specify the offset of your timezone rather than using the ```timeZone``` param. Probably don't use both ```timeZone``` and ```utcOffset``` together or weird things may happen.
     */
    utcOffset?: unknown;
    /**
     * If you have code that keeps the event loop running and want to stop the node process when that finishes regardless of the state of your cronjob, you can do so making use of this parameter. This is off by default and cron will run as if it needs to control the event loop. For more information take a look at [timers#timers_timeout_unref](https://nodejs.org/api/timers.html#timers_timeout_unref) from the NodeJS docs.
     */
    unrefTimeout?: boolean;
    /**
     * If true, no additional instances of cronjob will run until the current onTick callback has completed.
     * Any new scheduled executions that occur while the current cronjob is running will be skipped entirely.
     */
    waitForCompletion?: boolean;
    /**
     * This flag indicates whether the job will be executed at all.
     * @default false
     */
    disabled?: boolean;
    /**
     *  Threshold in ms to control whether to execute or skip missed execution deadlines caused by slow or busy hardware.
     *  Execution delays within threshold will be executed immediately, and otherwise will be skipped.
     *  In both cases a warning will be printed to the console with the job name and cron expression.
     *  Default is 250
     */
    threshold?: number;
} & ({
    timeZone?: string;
    utcOffset?: never;
} | {
    timeZone?: never;
    utcOffset?: number;
});
/**
 * Creates a scheduled job.
 * @param cronTime The time to fire off your job. This can be in the form of cron syntax, a JS ```Date``` object or a Luxon ```DateTime``` object.
 * @param options Job execution options.
 *
 * @publicApi
 */
export declare function Cron(cronTime: CronJobParams['cronTime'], options?: CronOptions): MethodDecorator;
