/** Performs the true mathematical operation of "number mod target" */ export declare const modulo: (number: number, target: number) => number;