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"; import type { RunRowsAccess } from "./run-rows.js"; import type { SponsorshipGateAccess } from "./sponsorship-gate.js"; export type RunsSurfaceDeps = { base: EngineBase; automations: AutomationRowsAccess; runRows: RunRowsAccess; sponsorship: SponsorshipGateAccess; execution: RunExecutionAccess; }; export declare const createRunsSurface: (deps: RunsSurfaceDeps) => AutomationsEngine["runs"]; //# sourceMappingURL=runs-surface.d.ts.map