import type { FloatOptions } from '../types/index'; /** * Check if the string is Float * * @param str - The string to check * @param options - Options object * @returns True if the string matches the validation, false otherwise */ export default function isFloat(str: string, options?: FloatOptions): boolean; export declare const locales: string[];