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