/**
* @internal
*
* Serializes a number, turning non-numeric values into strings.
*
* @paramvalue - The number to serialize.
* @returns A number, or a string if the given number was non-numeric.
*/exportdeclareconstserializeFloat: (value: number) =>string | number;