///
import test from "blue-tape";
export declare function testCombinations(description: string, script: (delayed: boolean, assert: test.Test) => Promise): void;
export declare function testStrictness(description: string, script: (assert: test.Test) => Promise): void;
export declare function waitForLength(ar: any[], length: number): Promise;
export declare class Obs {
v: T;
constructor(init: T);
get(): T;
set(val: T): void;
}