import { IRandomnessGenerator } from "./IRandomnessGenerator";
import { Type } from "./type";
/**
 * @hidden
 */
export interface IRandomnessSource {
    getGenerator(a: string): IRandomnessGenerator;
}
/**
 * @hidden
 */
export declare let IRandomnessSource_$type: Type;
