import React from 'react'; import { type infer as zType } from 'zod'; import { options as originalOptions } from '../../../commands/api/sync/user.js'; type ExtendedOptions = zType; type Props = { options: ExtendedOptions; onComplete?: ({ userId, firstName, lastName, email, roles, }: { userId: string; firstName?: string; lastName?: string; email?: string; roles?: string[]; }) => void; onError?: (error: string) => void; }; export default function APISyncUserComponent({ options, onComplete, onError, }: Props): React.JSX.Element; export {};