export type UserInfo = {
    id: number;
    email: string;
    firstName: string;
    lastName: string;
    team: string;
    renderingId: number;
    role: string;
    tags: {
        [key: string]: string;
    };
    permissionLevel: string;
};
export type Tokens = {
    accessToken: string;
};
//# sourceMappingURL=types.d.ts.map