import { FC } from 'react'; import { OAuthSignUpConfig } from './types'; declare type Props = { apiUrl: string; offerHandle: string; ctaLabel: string; showOAuthProviders: boolean; oauthConfig: OAuthSignUpConfig; isOAuthCompleteFlow: boolean; onSuccessCallback?: () => void; }; declare const App: FC; export default App;