/**
* Converts an unknown value to a string.
*
* @paramvalue - the value
* @parampretty - `true` to pretty print the string (if possible), `false` otherwse
* @returns the string
*/exportdeclarefunctionunknownToString(value: unknown, pretty?: boolean): string;