/** * Checks whether a string is a valid floating-point number. * * @see https://html.spec.whatwg.org/dev/common-microsyntaxes.html#floating-point-numbers * * @param value - The string to validate * @returns Whether the value is a valid floating-point number */ export declare function isFloat(value: string): boolean;