import React from 'react'; type LoginFlowProps = { apiKey?: string; onSuccess: (accessToken: string, cookie: string) => void; onError: (error: string) => void; }; declare const LoginFlow: React.FC; export default LoginFlow;