/** * Checks if a given value is a string node. * * A valid string node is any value whose type is strictly `'string'`. * * @param node - The value to check. * @returns `true` if the value is a string, otherwise `false`. */ export declare function isStringNode(node: unknown): node is string; //# sourceMappingURL=is-string-node.d.ts.map