import * as _backstage_core_plugin_api from '@backstage/core-plugin-api'; import { SidebarItem } from '@backstage/core-components'; /** * @public */ type PropsFor = T extends React.ComponentType ? P : never; /** * @public */ type RBACSidebarItemProps = Partial>; /** * @public */ declare const rbacPlugin: _backstage_core_plugin_api.BackstagePlugin<{ root: _backstage_core_plugin_api.RouteRef; }, {}, {}>; /** * @public */ declare const RBACRoot: () => JSX.Element; /** * @public */ declare const RBACSidebarItem: (props: RBACSidebarItemProps) => JSX.Element; export { type PropsFor, RBACRoot, RBACSidebarItem, type RBACSidebarItemProps, rbacPlugin };