/** * Converts a value to a string. * * @since 1.0.0 * * @param {*} value - The value to convert to a string. * @returns {string} - The string representation of the given value. * * @example * toString('Hello') // => 'Hello' * toString(123) // => '123' * toString(null) // => '' * toString(undefined) // => '' * toString(-0) // => '-0' * toString(0) // => '0' */ declare const toString: (value: any) => string; export default toString;