///
import _isDivisibleBy from 'validator/lib/isDivisibleBy';
import { TReferenceProps } from '../../..';
import { IStringProps, TStringValidatorResult } from '../_types';
declare type TParameters = Parameters;
export interface IIsDivisibleByProps {
number: TParameters[1];
}
/**
* Check if the string is a number that's divisible by another.
*/
export declare const isDivisibleBy: (props: TReferenceProps & IStringProps) => TStringValidatorResult;
export {};