/** * 读取 npm 配置工具 * 用于获取全局配置作为默认值 */ /** * 获取默认作者信息 * 优先级:npm init-author-name/email > git user.name/email * @returns 作者字符串,格式:Name 或 Name */ export declare function getDefaultAuthor(): string; /** * 获取默认许可证 * @returns 许可证名称,默认为 'MIT' */ export declare function getDefaultLicense(): string;