UNPKG

@adyen/kyc-components

Version:

This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.

10 lines (9 loc) 504 B
import type { MutationOptions } from '../types'; import type { GenerateOnboardingLinkRequest, GenerateOnboardingLinkResponse } from './onboardingStatus.types'; export declare const useGenerateOnboardingLink: (options?: Omit<MutationOptions<GenerateOnboardingLinkResponse, unknown, GenerateOnboardingLinkRequest>, "mutationFn">) => import("@tanstack/preact-query").UseMutationResult<{ redirectUrl?: string; }, unknown, { locale?: string; returnUrl?: string; themeId?: string; }, unknown>;