import { ComponentContext } from "@alloy-js/core"; import { MetaConfig } from "@power-plant/core"; //#region src/core/contexts/meta.d.ts /** * The Meta context used in template rendering. */ declare const MetaContext: ComponentContext>; /** * Hook to access the {@link MetaContext | Meta context}. * * @returns The Meta context. * @throws An error if the Meta context is not set. */ declare function useMeta(): Record; /** * Hook to safely access the {@link MetaContext | Meta context}. * * @returns The Meta context or undefined if not set. */ declare function useMetaSafe(): Record | undefined; //#endregion export { useMeta as n, useMetaSafe as r, MetaContext as t }; //# sourceMappingURL=meta-DtIlHZG5.d.mts.map