import type { ConfigOptions } from './core/config.js'; /** * Read or update the global MathTS runtime config. Call with no argument to * read the current config; pass a partial to merge it (in place) and get the * updated copy back. mathjs-compatible `math.config(...)`. * * Note: the MathTS functions surface is a singleton, so config is process-global * (not per-instance like mathjs `create()`). */ export declare function config(options?: Partial): ConfigOptions; //# sourceMappingURL=config-api.d.ts.map