/** @typedef {import("@spreadsheet/helpers/odoo_functions_helpers").OdooFunctionDescription} OdooFunctionDescription*/ /** * @param {string} formula * @returns {number} */ export function getNumberOfAccountFormulas(formula: string): number; /** * Get the first Account function description of the given formula. * * @param {string} formula * @returns {OdooFunctionDescription | undefined} */ export function getFirstAccountFunction(formula: string): OdooFunctionDescription | undefined; export type OdooFunctionDescription = import('../spreadsheet/helpers/odoo_functions_helpers').OdooFunctionDescription;