/** * 判断字符串是否为空字符串 * * @param {string} str 需要进行判断的字符串 * @returns {str is ''} true 为空字符串,false 不为空字符串 */ export declare const isEmpty: (str: string) => str is ""; export type IsEmptyStrType = typeof isEmpty;