import { checkToken } from './check-token'; import { compliteSetup } from './complite-setup'; import { create } from './create'; import { currentDeleteAccount } from './current/current-delete-account'; import { currentUpdate } from './current/current-update'; import { currentUpdateAvatar } from './current/current-update-avatar'; import { currentUpdateDashboard } from './current/current-update-dashboard'; import { currentUpdateNotifications } from './current/current-update-notifications'; import { currentUpdatePassword } from './current/current-update-password'; import { currentUpdatePreferences } from './current/current-update-preferences'; import { getTmpToken } from './current/get-tmp-token'; import { me } from './current/me'; import { mePing } from './current/me-ping'; import { enrollDevice } from './device/enroll-device'; import { forgetDevice } from './device/forget-device'; import { getDeviceRoster } from './device/get-device-roster'; import { lockDevice } from './device/lock-device'; import { resetPin } from './device/reset-pin'; import { setPin } from './device/set-pin'; import { unlockDevice } from './device/unlock-device'; import { createFine } from './fines/create-fine'; import { fastStatFines } from './fines/fast-stat-fines'; import { queryFines } from './fines/query-fines'; import { removeFine } from './fines/remove-fine'; import { updateFine } from './fines/update-fine'; import { getOne } from './get-one'; import { login } from './login'; import { loginSwitch } from './login-switch'; import { logout } from './logout'; import { createPosition } from './positions/create-position'; import { getAllPositions } from './positions/get-all-positions'; import { removePosition } from './positions/remove-position'; import { updatePosition } from './positions/update-position'; import { query } from './query'; import { recover } from './recover'; import { refresh } from './refresh'; import { remove } from './remove'; import { newUserMonthlyReport } from './reports/new-user-monthly-report'; import { userMonthlyReport } from './reports/user-monthly-report'; import { createSalarySchema } from './salary-schemas/create-salary-schema'; import { getAllSchemas } from './salary-schemas/get-all-schemas'; import { removeSalarySchema } from './salary-schemas/remove-position'; import { updateSalarySchema } from './salary-schemas/update-position'; import { sendInvite } from './send-invite'; import { sendInviteAfterVerification } from './send-invite-after-verification'; import { sendRecoverLink } from './send-recover-link'; import { createSession } from './sessions/create-session'; import { exportSession } from './sessions/export-sessions'; import { getSessionByUserAndDate } from './sessions/get-by-user-and-date'; import { getCalendarSessions } from './sessions/get-calendar-sessions'; import { getSession } from './sessions/get-session'; import { querySessions } from './sessions/query-sessions'; import { removeSession } from './sessions/remove-session'; import { updateSession } from './sessions/update-session'; import { setCookie } from './set-cookie'; import { assigneTask } from './task/assigne-task'; import { createTask } from './task/create-task'; import { getDashboardCounters } from './task/get-dashboard-counters'; import { queryTasks } from './task/query-tasks'; import { removeTask } from './task/remove-task'; import { unassigneTask } from './task/unassigne-task'; import { updateTask } from './task/update-task'; import { updateTaskStatus } from './task/update-task-status'; import { update } from './update'; import { updatePassword } from './update-password'; type ApiDeclaration = { assigneTask: typeof assigneTask; unassigneTask: typeof unassigneTask; createTask: typeof createTask; queryTasks: typeof queryTasks; getDashboardCounters: typeof getDashboardCounters; updateTask: typeof updateTask; removeTask: typeof removeTask; updateTaskStatus: typeof updateTaskStatus; newUserMonthlyReport: typeof newUserMonthlyReport; userMonthlyReport: typeof userMonthlyReport; createPosition: typeof createPosition; getAllPositions: typeof getAllPositions; removePosition: typeof removePosition; updatePosition: typeof updatePosition; loginSwitch: typeof loginSwitch; getTmpToken: typeof getTmpToken; enrollDevice: typeof enrollDevice; getDeviceRoster: typeof getDeviceRoster; unlockDevice: typeof unlockDevice; lockDevice: typeof lockDevice; forgetDevice: typeof forgetDevice; setPin: typeof setPin; resetPin: typeof resetPin; createSalarySchema: typeof createSalarySchema; updateSalarySchema: typeof updateSalarySchema; removeSalarySchema: typeof removeSalarySchema; getAllSchemas: typeof getAllSchemas; createFine: typeof createFine; updateFine: typeof updateFine; removeFine: typeof removeFine; queryFines: typeof queryFines; fastStatFines: typeof fastStatFines; currentUpdateDashboard: typeof currentUpdateDashboard; currentUpdateAvatar: typeof currentUpdateAvatar; currentUpdatePreferences: typeof currentUpdatePreferences; currentUpdateNotifications: typeof currentUpdateNotifications; mePing: typeof mePing; me: typeof me; currentUpdate: typeof currentUpdate; currentUpdatePassword: typeof currentUpdatePassword; currentDeleteAccount: typeof currentDeleteAccount; getSessionByUserAndDate: typeof getSessionByUserAndDate; getCalendarSessions: typeof getCalendarSessions; querySessions: typeof querySessions; getSession: typeof getSession; removeSession: typeof removeSession; createSession: typeof createSession; updateSession: typeof updateSession; sendInviteAfterVerification: typeof sendInviteAfterVerification; exportSession: typeof exportSession; setCookie: typeof setCookie; create: typeof create; compliteSetup: typeof compliteSetup; getOne: typeof getOne; recover: typeof recover; remove: typeof remove; update: typeof update; query: typeof query; login: typeof login; refresh: typeof refresh; updatePassword: typeof updatePassword; sendInvite: typeof sendInvite; checkToken: typeof checkToken; sendRecoverLink: typeof sendRecoverLink; logout: typeof logout; }; export declare const usersApiDeclaration: ApiDeclaration; export {};