import { IStringProps, TStringValidatorResult } from '../_types'; export interface IToFloatProps { } /** * Convert the input string to a `Float`, or `NaN` if the input is not a float. */ export declare const toFloat: (props: IToFloatProps & Omit) => TStringValidatorResult;