import { changePassword } from "./change-password/index"; import { create } from "./create/index"; import { login } from "./login/index"; import { me } from "./me/index"; import { query } from "./query/index"; import { remove } from "./remove/index"; import { sendInvite } from "./send-invite/index"; import { update } from "./update/index"; type ApiDeclaration = { create: typeof create; remove: typeof remove; update: typeof update; query: typeof query; login: typeof login; me: typeof me; changePassword: typeof changePassword; sendInvite: typeof sendInvite; }; declare const usersApiDeclaration: ApiDeclaration; export { usersApiDeclaration };