/** * Checks if the value is the value that is divisible by the target * without producing a remainder. * * @param target The value being checked. * @param arg The target value to perform the check against. * @return True if the value is divisible by the target, false otherwise. */ export declare function isDivisibleBy(target: number, arg: number): boolean;