import type { Config } from '../config/schema.js'; import type { AutomationService } from '../automations/index.js'; export type DreamingAutomationReconcileResult = { created: boolean; updated: boolean; disabled: boolean; }; export declare function reconcileDreamingAutomations(params: { config: Config; automationService: AutomationService; }): Promise;