// TODO(Tom): This should be exported from noirc_abi /** * The decoded inputs from the circuit. */ export type DecodedInputs = { /** * The inputs to the circuit */ inputs: Record; /** * The return value of the circuit */ return_value: any; };