import { DollarSign } from "xpresser/types";
import { EventsServerConfig } from "./Types";
/**
 * Get current date formatted.
 * @param date
 */
export declare function now(date?: Date | string): string;
/**
 * Create Md5 hash function
 * @param str
 */
export declare function md5(str: string): string;
/**
 * load events server config
 * @param $
 * @param omitSecretKey
 */
export declare function loadEventServerConfig($: DollarSign, omitSecretKey?: boolean): [any, EventsServerConfig?];
