//#region src/is-string/index.d.ts /** * Determines if the given value is a string. * * @param val - The value to check whether or not it is a string. * @returns True if the value is a string (primitive or String object), false otherwise. * * @example * ```typescript * import { isString } from '@accelint/predicates/is-string'; * * isString('hello'); // true * isString(new String('hi')); // true * isString(123); // false * isString(null); // false * ``` */ declare function isString(val: unknown): val is string | String; //#endregion export { isString }; //# sourceMappingURL=index.d.ts.map