/** * Compute floor(n / d) and store the remainder in r[0] */ export declare const floorDiv: (n: number, d: number, r: [number]) => number;