/** * Shared structured logger for mcp-personal-suite * Logs to stderr to not interfere with MCP protocol on stdout */ export declare function sanitizeSecrets(text: string): string; export declare const logger: { debug: (message: string, context?: Record) => void; info: (message: string, context?: Record) => void; warn: (message: string, context?: Record) => void; error: (message: string, context?: Record) => void; logError: (message: string, error: unknown, context?: Record) => void; }; export type Logger = typeof logger; //# sourceMappingURL=logger.d.ts.map