import AuthService from './auth'; import { STATUS } from './types'; import LoginService from './login'; export type { LoginService, AuthService, STATUS, }; declare const _default: { AuthService: typeof AuthService; LoginService: typeof LoginService; getter: () => any; getToken: () => string | null; impl: { basic: AuthService; admin: AuthService; }; SUCCESS: STATUS.SUCCESS; FAILED: STATUS.FAILED; FORCE: STATUS.FORCE; MODIFY: STATUS.MODIFY; STATUS: typeof STATUS; }; export default _default;