import { AxiosResponse } from 'axios'; import { FetchListResponse } from '../types/fetchResponse.type'; import { GetOptionsParams, GetUsersParams } from '../dto/teamMemberAccountService.dto'; import { GetOptionsResponse, PasswordSchedule, User } from '../types/teamMemberAccountService.type'; declare const AccountMemberServices: { getUsers: (params?: GetUsersParams) => Promise>>; getUserEmails: (params?: GetUsersParams) => Promise; getOptions: (params: GetOptionsParams) => Promise>; registerUser: (userData: { email: string; }) => Promise>; editUserEmail: (accountId: string, email: string) => Promise>; deleteUser: (accountId: string) => Promise>; changeUserWangsitPassword: (accountId: string, wangsitPassword: string) => Promise>; changeUserFigmaPassword: (accountId: string, figmaPassword: string) => Promise>; changeUserGithubPassword: (accountId: string, githubPassword: string) => Promise>; getPasswordSchedule: () => Promise>; updatePasswordSchedule: (value: number, unit: string) => Promise>; }; export default AccountMemberServices;