/** Precedence/associativity metadata for a single operator identifier. */ interface OperatorProperty { op?: string; associativity?: string; associativeWith?: string[]; latexParens?: boolean; latexLeftParens?: boolean; latexRightParens?: boolean; } export declare const properties: Array>; /** * Get the operator associated with a function name. * Returns a string with the operator symbol, or null if the * input is not the name of a function associated with an * operator. * * @param {string} fn Function name * @return {string | null} Associated operator symbol, if any */ export declare function getOperator(fn: string): string | null; export {}; //# sourceMappingURL=operators.d.ts.map