import { LogTransportInterface, LogRecord, LogLevel, LogFn } from '@frontmcp/sdk'; export declare class ConsoleLogTransportInstance extends LogTransportInterface { log(rec: LogRecord): void; private levelTags; /** Returns a *bound native console function* with the prefix (ANSI only) */ bind(level: LogLevel, loggerPrefix?: string): LogFn; private pickMethod; private supportsAnsi; private friendlyTime; }