/** * Returns `true` if the value is a string primitive. * @param value The value to check. * * @example * ```typescript * isStringPrimitive(''); // => true * isStringPrimitive('a'); // => true * isStringPrimitive(0); // => false * ``` */ declare const isStringPrimitive: (value: unknown) => value is string; export default isStringPrimitive; //# sourceMappingURL=isStringPrimitive.d.ts.map