export type Caller = {
    id: number;
    email: string;
    firstName: string;
    lastName: string;
    team: string;
    renderingId: number;
    requestId: string;
    environment: string | null;
    project: string | null;
    request: {
        ip: string;
    };
    role: string;
    tags: {
        [key: string]: string;
    };
    permissionLevel: 'admin' | 'developer' | 'editor' | 'user';
    timezone: string;
};
//# sourceMappingURL=caller.d.ts.map