import * as React from 'react'; import type { PluginListing, PluginsActions } from './types'; interface Props { /** Override the rows. Normally omitted; the page reads them through the `ApiAdapter`. */ listings?: PluginListing[]; /** Override the writes. Normally omitted; they bind to the API by default. */ actions?: PluginsActions; } /** * The Plugins page: what plugins this deployment has, and who decided they run. * * The frame mirrors `DataMenu`, since this belongs to the same management group. * Two levels of control rather than one switch (see `plugins/enablement.ts`): an * admin sets what is available and its default, then anyone chooses for themselves * unless the admin locked it. CASL only decides which controls render — every write * is re-checked server-side. */ export declare function PluginsManager({ listings, actions }: Props): React.JSX.Element; export {}; //# sourceMappingURL=PluginsManager.d.ts.map