import { ComponentContext } from "@alloy-js/core"; //#region src/core/contexts/spec.d.ts /** * The Specification context used in template rendering. */ declare const SpecContext: ComponentContext; /** * Hook to access the {@link SpecContext | Specification context}. * * @returns The Specification context. * @throws An error if the Specification context is not set. */ declare function useSpec(): any; /** * Hook to safely access the {@link SpecContext | Specification context}. * * @returns The Specification context or undefined if not set. */ declare function useSpecSafe(): any | undefined; //#endregion export { SpecContext, useSpec, useSpecSafe }; //# sourceMappingURL=spec.d.cts.map