UNPKG

@keycloakify/keycloak-admin-ui

Version:
10 lines (9 loc) 488 B
import type { AuthenticationProviderRepresentation } from "@keycloak/keycloak-admin-client/lib/defs/authenticatorConfigRepresentation"; export type FlowType = "client" | "form" | "basic" | "condition" | "subFlow"; type AddStepModalProps = { name: string; type: FlowType; onSelect: (value?: AuthenticationProviderRepresentation) => void; }; export declare const AddStepModal: ({ name, type, onSelect }: AddStepModalProps) => import("react/jsx-runtime").JSX.Element; export {};