import EventBus from '../EventBus'; declare type childProcessProps = { /** * Event bus */ eventBus: EventBus; /** * Command */ command: string; }; declare const _default: ({ eventBus, command, }: childProcessProps) => void; export default _default;