/**
 * Take two (non-complex) numbers as arguments and return a pair of numbers
 * consisting of their quotient and remainder when using integer division.
 */
export declare function divmod(a: number, b: number): number[];
