@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) • 483 B
TypeScript
import type { ExistingLegalEntity } from '../../core/models/api/legal-entity';
import { type IntroductionScreen } from '../../components/Shared/Introduction/types';
import { type TaskType } from '../../stores/globalStore/taskTypes';
interface UseIntroductionScreensProps {
legalEntity: ExistingLegalEntity;
tasks: TaskType[];
}
export declare const useIntroductionScreens: ({ legalEntity, tasks }: UseIntroductionScreensProps) => IntroductionScreen[] | undefined;
export {};