export declare enum Level { CRITICAL = "CRITICAL", ERROR = "ERROR", WARNING = "WARNING", NOTICE = "NOTICE", INFO = "INFO", DEBUG = "DEBUG" } export type User = { user?: { id?: number; login?: string; }; }; export type ProjectInfo = { project?: { id?: number; identifier?: string; organization_id?: number; user_id?: number; }; }; export type OrganizationInfo = { organization?: { id: number; domain: string; }; }; export type RequestInfo = { request?: { ip?: string; userAgent?: string; referrer?: string; url?: string; }; }; export type OtherContext = { [key: string]: unknown; }; export type Context = User & ProjectInfo & OrganizationInfo & RequestInfo & OtherContext & { appIdentifier?: string; };