import type { PluginManifest } from '../../../../plugins/sdk/types'; /** A plugin found on the server's filesystem, not necessarily added or running. */ export interface MountedPlugin { manifest: PluginManifest; bundleUrl: string; /** Shown to an administrator before they add it, so they can see what they are trusting. */ mountPath: string; } export declare function useMountedPlugins(): { mounted: MountedPlugin[]; enabled: boolean; isLoading: boolean; }; //# sourceMappingURL=useMountedPlugins.d.ts.map