import type { TypedFunction } from '../core/function/typed.js'; import type { ConfigOptions } from '../core/config.js'; interface InvmodDependencies { typed: TypedFunction; config: ConfigOptions; xgcd: TypedFunction; equal: TypedFunction; smaller: TypedFunction; mod: TypedFunction; add: TypedFunction; isInteger: (x: unknown) => boolean; } export declare const createInvmod: import("../utils/factory.js").FactoryFunction; export {}; //# sourceMappingURL=invmod.d.ts.map