import { TestIntInput } from '../inputs'; import { ErrorUnion, TestVectorIntObjectUnion } from '../outputs'; /** * Returns the received vector of objects containing a number; for testing only. This * is an offline method. Can be called before authorization * @param {Object} params * @param {TestIntInput[]} [params.x] - Vector of objects to return * @param {Object} state * @returns {TestVectorIntObjectUnion | ErrorUnion} */ export declare type TestCallVectorIntObjectMethod = (params: TestCallVectorIntObjectParams, state?: Record) => Promise; export interface TestCallVectorIntObjectParams { /** Vector of objects to return */ x?: TestIntInput[]; }