import type { AbsType, AnyType, ArrType, BinType, BoolType, ConType, FnRxType, FnType, MapType, NumType, OrType, RefType, StrType, Type, t } from '../type'; import { type ObjType } from '../type/classes/ObjType'; export declare class Random { static readonly gen: (type: T) => t.infer; gen(type: AbsType): unknown; any(type: AnyType): unknown; arr(type: ArrType): unknown[]; bin(type: BinType): Uint8Array; bool(type: BoolType): boolean; con(type: ConType): unknown; fn(type: FnType): unknown; fn$(type: FnRxType): unknown; map(type: MapType): Record; num(type: NumType): number; obj(type: ObjType): Record; or(type: OrType): unknown; ref(type: RefType): unknown; str(type: StrType): string; } //# sourceMappingURL=Random.d.ts.map