import type { EventsSchema, InnerLogger, LoggerContext } from "./types.js"; /** * Creates a local-only logger that outputs events to the console in development mode. * This logger does not send data to external services and is safe for all environments. * * @template Schema - The events schema defining allowed events and their data structures * @param {LoggerContext} context - Context information to attach to all events * @returns {InnerLogger} A logger instance that logs to console in dev mode */ export declare function createLocalLogger(context: LoggerContext): InnerLogger; //# sourceMappingURL=local.d.ts.map