import type { AdminUser } from '../../../../../entities/index.ts'; import type { HttpClient } from '../../../../../services/index.ts'; import type { ApiError, Response } from '../../../../types/index.ts'; export type GetAdminUserInput = { userId: string; }; declare const getAdminUser: (http: HttpClient) => { query: (input: GetAdminUserInput) => Promise>; }; export default getAdminUser;