import ProxyService from './Proxy'; import { EmptyResponse, Users } from './types'; export default class UsersService { proxy: ProxyService; readonly route: string; constructor(proxy: ProxyService); getV2(params: Users.GetV2Params): Promise; signup(user: Users.SignUpParams, auth_key?: string): Promise; update(user?: Users.UpdateParams): Promise; delete(): Promise; resetPassword(email?: string): Promise; listOnline(params?: Users.ListOnlineParams): Promise; getOnlineCount(): Promise; /** * @deprecated Use `getV2(params)` instead. */ get(params: any): Promise; } //# sourceMappingURL=Users.d.ts.map