UNPKG

@keycloakify/keycloak-admin-ui

Version:
9 lines (8 loc) 405 B
import type { ComponentProps } from "../../components/dynamic/components"; type UserSelectVariant = "typeaheadMulti" | "typeahead"; type UserSelectProps = ComponentProps & { variant?: UserSelectVariant; isRequired?: boolean; }; export declare const UserSelect: ({ name, label, helpText, defaultValue, isRequired, variant, }: UserSelectProps) => import("react/jsx-runtime").JSX.Element; export {};