export interface UserInterface {
    id: string;
    name: string;
    createdAt: string;
    sisUserId: string;
    integrationId: string;
    sisImportId: number;
    loginId: string;
    avatarUrl: string;
    lastname: string;
    firstname: string;
    email: string;
    locale: string | null;
    permissions: Record<string, string>;
    userNumber: number;
}
//# sourceMappingURL=user.interface.d.ts.map