///
export function UserRoleSelector({ visible, disabled, value, showActions, onChange, onClose, onSubmit, disableRole, getDisplayUser, getDisplayRole, help, service, }: {
visible: any;
disabled?: boolean;
value: any;
showActions: any;
onChange: any;
onClose: any;
onSubmit: any;
disableRole?: boolean;
getDisplayUser: any;
getDisplayRole: any;
help: any;
service?: Record<"queryUsers" | "queryRole" | "countUsers", (params?: Record, options?: import("lib-service").ServiceConfig) => Promise>;
}): React.JSX.Element;
import React from "react";