importtype { AbsType } from'../type/classes/AbsType';
/**
* Main router function that dispatches to the correct random generator based on the type's kind.
* This replaces the individual random() methods in each type class.
*/exportdeclarefunctionrandom(type: AbsType<any>): unknown;