import { Writable } from 'node:stream';
/**
 * Used by test setup to keep UT from writing to disk.
 */
export declare class MemoryLogger extends Writable {
    loggedData: Array<Record<string, unknown>>;
    constructor();
    _write(chunk: Record<string, unknown>, encoding: string, callback: (err?: Error) => void): void;
}
