export declare const CLIENT_ID: string | undefined; export declare const SECRET_KEY: string | undefined; /** * API 网关地址 */ export declare const API_GATEWAY_URL = "https://api.dingtalk.com/v1.0"; /** * 企业内部应用网关地址 */ export declare const OPEN_API_GATEWAY_URL = "https://oapi.dingtalk.com/v1.0"; /** * 配置 */ export type Configuration = { /** * 应用的唯一标识 */ clientId?: string | undefined; /** * 应用的密钥 */ clientSecret?: string | undefined; [key: string]: any; }; export declare const defaultConfig: Configuration;