import { Numeric, RelMaker } from './00_Declarations'; import { TNode } from './05_TNode'; export declare function NumericGeneratorSet(rel: RelMaker, negFactor: number | undefined, constr: new () => T): { plus: import("./00_Declarations").Generator; minus: import("./00_Declarations").Generator; mal: import("./00_Declarations").Generator; geteilt: import("./00_Declarations").Generator; potenz: import("./00_Declarations").Generator; choice: (c0: TNode[], c1: TNode[], c2: TNode[]) => TNode; zahl: () => Numeric; };