import { Kernel } from './kernel'; export declare function closeRecording(kernel: Kernel): Promise; /** * Start recording all interaction with the kernel object. * * This method installs a proxy function for each public API in the kernel (methods that do not * start with '_') and records input requests and output requests into JSON stream files. * * @param kernel The kernel object to record. * @param inputLog Input log stream * @param outputLog Output log stream. */ export declare function recordInteraction(kernel: Kernel, inputOutputLogPath: string): void; //# sourceMappingURL=recording.d.ts.map