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