/** * Minified stringify with circular and depth protection. * @param {ReturnType} value - Value to use. * @returns {string} - The minified stringify. */ declare function minifiedStringify(value: ReturnType): string; /** * Runs format value. * @param {ReturnType} value - Value to use. * @returns {string} - The value. */ declare function formatValue(value: ReturnType): string; export { formatValue, minifiedStringify }; //# sourceMappingURL=format-value.d.ts.map