import { MessageFunctionType, Result } from '../types'; export interface IsDivisibleByErrors { TARGET_ARGUMENT_NOT_A_NUMBER: MessageFunctionType; DIVISOR_ARGUMENT_NOT_A_NUMBER: MessageFunctionType; } export declare const IS_DIVISIBLE_BY_ERRORS: IsDivisibleByErrors; /** * Tests whether the `target` is divisible by the arg * * ### Example * ``` * expect(isDivisibleBy(2,2).value).toBeTruthy() * ``` * @param target The target string * @param divisor The divisor */ export declare function isDivisibleBy(target: number, divisor: number): Result;