/**
 * Tests to see if the specified value is an multiple of *multipler*
 *
 * @param input The number to test
 * @param multiplier The multipler
 * @returns true, if the number is a multiple
 */
export declare function isMultipleOf(input: number, multiplier: number): boolean;
export default isMultipleOf;
