import { ReactNode } from 'react'; import { PluginRecord } from 'ui-plugin'; declare type Props = { children: (props: { plugins: PluginRecord[]; enable: (pluginName: string, enabled: boolean) => void; }) => ReactNode; }; export declare function PluginsConsumer({ children }: Props): JSX.Element; export {};