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