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