/**
 * 判断值是否为字符串
 * @return 是否为字符串
 */
export default function isString(value: unknown): value is string;
