import { Base, Type } from "./type";
import { IRandomnessSource } from "./IRandomnessSource";
/**
 * @hidden
 */
export declare class TestRandomness extends Base {
    static $t: Type;
    constructor();
    private static b;
    static get instance(): TestRandomness;
    private _testRandomnessSource;
    get testRandomnessSource(): IRandomnessSource;
    set testRandomnessSource(a: IRandomnessSource);
}
