import type COS from 'cos-nodejs-sdk-v5';
/**
 * 获取 cos-nodejs-sdk-v5 库
 * cos-nodejs-sdk-v5 是腾讯云对象存储 COS 的 Node.js SDK
 * @returns cos-nodejs-sdk-v5 库
 * @example
 * ```ts
 * const COS = getCosNodejsSdkV5();
 * const cos = new COS({ SecretId: '...', SecretKey: '...' });
 * ```
 */
export declare function getCosNodejsSdkV5(): typeof COS;
