import { FC } from 'react'; declare type Props = { onSignup: (userToken: string) => Promise<{ organizationId: string; } | { errors: Record; }>; onSuccess: (organizationId: string, companyDisclaimer: boolean) => void; onError: (error: { status: number; message: string; }) => void; }; declare const OAuthComplete: FC; export default OAuthComplete;