/** * Logger initialization utility for app shells. * * @module @burdenoff/fe-libs/shared/utils/loggerInit */ export interface InitLoggerOptions { /** App name for global context (e.g., "workspaces", "fluidgrids") */ appName: string; /** Environment variable name for debug flag (default: "VITE_LOG_LEVEL_DEBUG") */ debugEnvVar?: string; } export declare function initializeLogger(options: InitLoggerOptions): void; export declare function setUserContext(userId: string, organizationId?: string, workspaceId?: string): void; export declare function clearUserContext(): void; //# sourceMappingURL=loggerInit.d.ts.map