import { ForeignCallInput } from '@noir-lang/acvm_js'; import { ACVMField } from '../acvm_types.js'; /** * Convert an array of ACVMFields to a string. * * @param msg - array of ACVMFields where each represents a single ascii character * @returns string representation of the message */ export declare function acvmFieldMessageToString(msg: ACVMField[]): string; /** * Convert an array of ACVMFields from ACVM to a formatted string. * * @param parameters - either one parameter representing a simple field or array, or two parameters when * It's a message without args or three parameters when it's a message with arguments. * * @returns formatted string */ export declare function oracleDebugCallToFormattedStr(parameters: ForeignCallInput[]): string; //# sourceMappingURL=debug.d.ts.map