import type { AutomationRowsAccess } from "./automation-rows.js"; import type { ConsentAccess } from "./consent.js"; import type { EngineBase } from "./engine-context.js"; import type { GrantsAccess } from "./grants.js"; import type { AutomationsEngine } from "./index.js"; export type ArmingSurfaceDeps = { base: EngineBase; automations: AutomationRowsAccess; grants: GrantsAccess; consent: ConsentAccess; }; export declare const createArmingSurface: (deps: ArmingSurfaceDeps) => Pick; //# sourceMappingURL=arming-surface.d.ts.map