import { OAuth2State } from '@/utils';
import { Realm } from '@sage-bionetworks/synapse-client';
type AuthenticationMethodSelectionProps = {
    ssoRedirectUrl?: string;
    onBeginOAuthSignIn?: () => void;
    onSelectUsernameAndPassword: () => void;
    state?: OAuth2State;
    realm?: Realm;
};
/**
 *  To support Google SSO in your portal, you must add your domain to the Authorized Redirect URIs for Synapse authentication.
 *  This can be done by visiting https://sagebionetworks.jira.com/servicedesk/customer/portal/9 to set up a collaboration.
 *  Synapse engineers must add your redirect URL in the Google API console found at https://console.cloud.google.com/ for this functionality to work.
 */
export default function AuthenticationMethodSelection(props: AuthenticationMethodSelectionProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=AuthenticationMethodSelection.d.ts.map