import { ErrorUnion, UserFullInfoUnion } from '../outputs'; /** * Returns full information about a user by their identifier * @param {Object} params * @param {number} [params.userId] - User identifier * @param {Object} state * @returns {UserFullInfoUnion | ErrorUnion} */ export declare type GetUserFullInfoMethod = (params: GetUserFullInfoParams, state?: Record) => Promise; export interface GetUserFullInfoParams { /** User identifier */ userId?: number; }