import { Options } from './types'; declare class EmbeddedRegistration { private container; private offerHandle; private ctaLabel; private apiUrl; private onSuccess; private utmCookies; private useOAuthProviders; private oauthConfig; constructor({ container, offerHandle, ctaLabel, apiUrl, onSuccess, oauthConfig, useOAuthProviders, utmCookies, }: Options); private isOAuthCompleteFlow; render(): void; } export default EmbeddedRegistration;