import { ComponentContext } from "@alloy-js/core"; import { ExecutionContext } from "@power-plant/core"; //#region src/core/contexts/execution.d.ts /** * The Execution context used in template rendering. */ declare const ExecutionContext$1: ComponentContext>; /** * Hook to access the {@link ExecutionContext | Execution context}. * * @returns The Execution context. * @throws An error if the execution context is not set. */ declare function useExecution(): ExecutionContext; /** * Hook to safely access the {@link ExecutionContext | Execution context}. * * @returns The Execution context or undefined if not set. */ declare function useExecutionSafe(): ExecutionContext | undefined; //#endregion export { useExecution as n, useExecutionSafe as r, ExecutionContext$1 as t }; //# sourceMappingURL=execution-BGY24cO8.d.cts.map