declare const authProvider: { login: ({ username, password }: { username: string; password: string; }) => Promise; logout: () => Promise; checkAuth: () => Promise; checkError: (error: { status: number; }) => Promise; getIdentity: () => Promise<{ id: string; fullName: string; }>; getPermissions: () => Promise; }; export default authProvider; //# sourceMappingURL=basicAuth.d.ts.map