/**
 * 获取服务器时间
 * @param url 请求地址, 不传递，使用location.oright + '/date'
 * @returns {Promise<string>}
 */
export declare function setServerTime(url?: string): Promise<string>;
/**
 * 获取服务器时间，先获取localStorage.getItem('__serverTime')，没有获取到，调用setServerTime
 * @returns {Promise<string>}
 */
export declare function getServerTime(url?: string): Promise<string>;
