/* 0.28.0 */import type { BoxedExpression, IdentifierDefinitions } from '../global-types';
export type CanonicalArithmeticOperators = 'Add' | 'Negate' | 'Multiply' | 'Divide' | 'Power' | 'Sqrt' | 'Root' | 'Ln';
export declare const ARITHMETIC_LIBRARY: IdentifierDefinitions[];
export declare function isPrime(expr: BoxedExpression): boolean | undefined;
