import type { AutomationRowsAccess } from "./automation-rows.js"; import type { EngineBase } from "./engine-context.js"; import type { AutomationsEngine } from "./index.js"; import type { RunExecutionAccess } from "./run-execution.js"; export type IngestionSurfaceDeps = { base: EngineBase; automations: AutomationRowsAccess; execution: RunExecutionAccess; }; export declare const createIngestionSurface: (deps: IngestionSurfaceDeps) => Pick; //# sourceMappingURL=ingestion-surface.d.ts.map