import React from 'react'; import { type infer as zInfer } from 'zod'; import { options } from '../../commands/api/users/unassign.js'; type Props = { options: zInfer; }; export default function PermitUsersUnassignComponent({ options }: Props): React.JSX.Element; export {};