export default cronToText;
/**
 * Given a cronspec, return the human-readable string.
 * @param {string} cronspec
 * @param withSeconds
 * @param {Object=} locale
 */
declare function cronToText(cronspec: string, withSeconds: any, locale?: any | undefined): string;
