import type { SocialLogin } from '@corbado/shared-ui'; import type { SocialProviderType } from '@corbado/web-core'; import type { TFunction } from 'i18next'; import type { FC } from 'react'; export interface SocialLoginButtonsProps { dividerText?: string; socialLogins: SocialLogin[]; t: TFunction; socialLoadingInProgress: boolean | undefined; onClick: (providerType: SocialProviderType) => void; } export declare const SocialLoginButtons: FC;