import { TestInstance } from './types.js'; declare const eventMap: { sigterm: (instance: TestInstance) => Promise; sigkill: (instance: TestInstance) => Promise; write: (instance: TestInstance, props: { value: string; }) => boolean; }; export { eventMap };