declare function isClose(
    a: number,
    b: number,
    relTol?: number,
    absTol?: number
): boolean;

export = isClose;
