/**
 * Logger for @mindfiredigital/pivothead
 *
 * Uses Winston when running in Node.js (CJS context). Falls back to a
 * structured console-based logger in browser / ESM environments so the
 * package stays bundle-safe and works without winston installed.
 *
 * Log level is controlled by the LOG_LEVEL environment variable
 * (default: "info"). Accepted values: error | warn | info | debug.
 *
 * Winston is an optional peer dependency. Install it to get structured
 * log formatting, multiple transports, and full Winston features:
 *
 *   npm install winston
 */
import type { PivotLogger, LogMethod } from '../types/interfaces';
export type { PivotLogger, LogMethod };
export declare const logger: PivotLogger;
//# sourceMappingURL=logger.d.ts.map