/** * Checks whether a given value is a string. * * @param text - The value to check. * @returns `true` if the value is a string (including empty strings), otherwise `false`. * @example * isString('hello') // true * isString(123) // false */ export declare function isString(text: unknown): text is string; //# sourceMappingURL=is-string.d.ts.map