import type { ResolvedPluginEnablement } from '../../../../plugins/enablement'; /** * Which plugins run for the signed-in user. Wiring only — the rule lives in * `plugins/enablement.ts`. Mount above `AppProvider`: * * const { enabledSlugs, configs } = usePluginEnablement() * * * Empty while the fetches are in flight, never undefined: the host reads undefined * as "activate everything", and an unresolved fetch is not permission to run * full-privilege code. */ export declare function usePluginEnablement(): ResolvedPluginEnablement & { isLoading: boolean; }; //# sourceMappingURL=usePluginEnablement.d.ts.map