import React from 'react'; type Props = { onComplete: ({ userId, firstName, lastName, email, users, }: { userId: string; firstName?: string; lastName?: string; email?: string; users: string[]; }) => void; onError: (error: string) => void; }; export default function GeneratedUsersComponent({ onComplete, onError, }: Props): React.JSX.Element; export {};