import { SpecifyCurrentUser } from '../../httpApi/index.js'; export declare class Authentication { #private; get isAuthenticated(): boolean; get credentials(): { personalAccessToken: string; currentUser: { email: string; id: string; username: string; fullname: string; organizations: { id: string; namespace: string; domain: string | null; }[]; }; currentOrganization: { id: string; namespace: string; domain: string | null; }; }; get personalAccessToken(): string; set(personalAccessToken: string, currentUser: SpecifyCurrentUser): void; reset(): void; } //# sourceMappingURL=Authentication.d.ts.map