@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
17 lines (16 loc) • 661 B
TypeScript
import type GroupRepresentation from "@keycloak/keycloak-admin-client/lib/defs/groupRepresentation";
import "./group-picker-dialog.css";
export type GroupPickerDialogProps = {
id?: string;
type: "selectOne" | "selectMany";
filterGroups?: GroupRepresentation[];
text: {
title: string;
ok: string;
};
canBrowse?: boolean;
isMove?: boolean;
onConfirm: (groups: GroupRepresentation[] | undefined) => void;
onClose: () => void;
};
export declare const GroupPickerDialog: ({ id, type, filterGroups, text, canBrowse, isMove, onClose, onConfirm, }: GroupPickerDialogProps) => import("react/jsx-runtime").JSX.Element;