/** * 判断是否为 string * * @param value 需要进行判断的值 * @returns {value is string} true 为 string,false 为其他类型 */ export declare const isStr: (value: any) => value is string; export type IsStrType = typeof isStr;