/** * 根据时间和当前系统配置计算 token * * @param accessKey 当前系统的唯一 key * @param timestamp 时间参数(可选,默认当前时间戳) * @returns 包含 sign(MD5 签名)和 timestamp 的对象 */ declare function createApiToken(accessKey: string, timestamp?: string | number): { sign: string; timestamp: string | number; }; declare const _default: { createApiToken: typeof createApiToken; }; export default _default;