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.

8 lines (7 loc) 304 B
import type { AccountHolderOption } from '../types/accountHolder'; interface UseAccountHolder { accountHolder: AccountHolderOption | undefined; setAccountHolder: (accountHolder: AccountHolderOption | undefined) => void; } export declare const useAccountHolder: () => UseAccountHolder; export {};