import { transportFunctionType } from "../index"; type ConsoleMethod = "log" | "warn" | "error" | "info" | (string & {}); type LogLevel = string; export type MapConsoleTransportOptions = { mapLevels?: Record; }; declare const mapConsoleTransport: transportFunctionType; export { mapConsoleTransport };