@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) • 436 B
TypeScript
import type { MutationOptions } from '../types';
import type { components } from './legalEntity.contract';
type ConfirmReviewResponse = components['schemas']['LegalEntityDataReviewConfirmationResponse'];
export declare const useConfirmReview: (options?: Omit<MutationOptions<ConfirmReviewResponse>, "mutationFn">) => import("@tanstack/preact-query").UseMutationResult<{
dataReviewedAt?: string;
}, Error, void, unknown>;
export {};