UNPKG

@keycloakify/keycloak-admin-ui

Version:
10 lines (9 loc) 432 B
import type GroupRepresentation from "@keycloak/keycloak-admin-client/lib/defs/groupRepresentation"; import "./group-tree.css"; export declare function countGroups(groups: GroupRepresentation[]): number; type GroupTreeProps = { refresh: () => void; canViewDetails: boolean; }; export declare const GroupTree: ({ refresh: viewRefresh, canViewDetails, }: GroupTreeProps) => import("react/jsx-runtime").JSX.Element; export {};