import type { TypedFunction } from '../core/function/typed.js'; import type { ConfigOptions } from '../core/config.js'; import type { Complex } from '../type/complex/Complex.js'; interface ComplexConstructor { new (re: number, im: number): Complex; } interface AtanhDependencies { typed: TypedFunction; config: ConfigOptions; Complex: ComplexConstructor; } export declare const createAtanh: import("../utils/factory.js").FactoryFunction; export {}; //# sourceMappingURL=atanh.d.ts.map