import type { AutomationEvent } from './domain/types.js'; type AutomationProductEventListener = (event: AutomationEvent) => void | Promise; export declare function onAutomationProductEvent(listener: AutomationProductEventListener): () => void; export declare function publishAutomationProductEvent(event: AutomationEvent): void; export {};