import { AxiosResponse } from 'axios'; import { GetUserDropdownQueryParams, GetUserListOptionsQueryParams, GetUserListQueryParams, PatchUserActiveStatusBody } from '../dto/userService.dto'; import { FetchDetailResponse, FetchListResponse, FetchOptionResponse, ShortFetchListResponse } from '../types/fetchResponse.type'; import { DropdownOption } from '../types/options.type'; import { User } from '../types/userService.type'; declare const UserService: { getUserList: (params: GetUserListQueryParams) => Promise>>; getUserListOptions: (params: GetUserListOptionsQueryParams) => Promise>>>; patchUserActiveStatus: (body: PatchUserActiveStatusBody) => Promise; putResendActivationEmail: (userIds: string[]) => Promise; getUserDetail: (userId: string) => Promise>>; getUserDropdown: (params: GetUserDropdownQueryParams) => Promise>>; }; export default UserService;