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