/**
 * Generates a random string with 32 characters.
 *
 * @returns {String}
 */
export declare function randomString(): string;
/**
 * Determine whether the given `date` is an instance of `Date`.
 *
 * @param {Date} date
 *
 * @returns {Boolean}
 */
export declare function isDate(date: Date): boolean;
