/** * Similar to the modulo operator, but always returns a positive number (even when the input is negative). */ declare function remainder(n: number, d: number): number; export { remainder };