/** * checks if a given number is a multiple of another */ declare function isMultiple(x: any, y: any): boolean; export default isMultiple;