import type * as CronParser from 'cron-parser';
/**
 * 获取 cron-parser 库
 * cron-parser 是一个用于解析 cron 表达式的第三方库
 * @returns cron-parser 库
 * @example
 * ```ts
 * const cronParser = getCronParser();
 * const interval = cronParser.parseExpression('0 0 * * *');
 * interval.next().toString();
 * ```
 */
export declare function getCronParser(): typeof CronParser;
