///
import _toInt from 'validator/lib/toInt';
import { IStringProps, TStringValidatorResult } from '../_types';
declare type TParameters = Parameters;
export interface IToIntProps {
radix?: TParameters[1];
}
/**
* Convert the input string to an `integer`, or `NaN` if the input is not an integer.
*/
export declare const toInt: (props?: IToIntProps & Omit) => TStringValidatorResult;
export {};