import { IsNumberOptions } from "./IsNumber"; /** * Checks if the string is numeric. * If given value is not a string, then it returns false. * * @param value The value being checked. * @return True if the value is numeric, false otherwise. */ export declare function isNumberString(value: string, options?: IsNumberOptions): boolean;