/** * @fileoverview Pure mapping from a host-supplied {@link EntityActionUXContext} to the engine/transport * {@link RecordProcessScope}. Extracted so it's unit-testable without instantiating a component. * @module @memberjunction/ng-entity-action-ux */ import type { RecordProcessScopeOverride } from '@memberjunction/core-entities'; import type { EntityActionUXContext } from './runtime-ux-context'; /** Builds the run scope from the grid/list context the host assembled. */ export declare function buildRecordProcessScope(context: EntityActionUXContext): RecordProcessScopeOverride; /** Renders an arbitrary value for the diff/preview table. */ export declare function displayValue(value: unknown): string; //# sourceMappingURL=scope.d.ts.map