import type { VerifySocialParams } from './useStepUpAuthentication.types'; import type { useStepUpState } from './useStepUpState'; type StepUpStateActions = ReturnType; type UseStepUpSocialParams = { stateActions: StepUpStateActions; }; export declare const useStepUpSocial: ({ stateActions }: UseStepUpSocialParams) => { verifySocial: ({ provider, requestedScopes, }: VerifySocialParams) => Promise; }; export {};