@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
12 lines (11 loc) • 584 B
TypeScript
import type ScopeRepresentation from "@keycloak/keycloak-admin-client/lib/defs/scopeRepresentation";
import type { PermissionScopeRepresentation } from "../../clients/authorization/Scopes";
type DeleteScopeDialogProps = {
clientId: string;
selectedScope: PermissionScopeRepresentation | ScopeRepresentation | undefined;
refresh: () => void;
open: boolean;
toggleDialog: () => void;
};
export declare const DeleteScopeDialog: ({ clientId, selectedScope, refresh, open, toggleDialog, }: DeleteScopeDialogProps) => import("react/jsx-runtime").JSX.Element;
export {};