/** * Expects that testValue is equal to expectedValue or optionally within percentage (defaults to .01 or 1%) */ export declare const testWithinPerc: (testValue: number, expectedValue: number, options?: { withinPerc?: number; debug?: boolean; }) => void;