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.

9 lines (8 loc) 459 B
import type { QueryOptions } from '../types'; import type { PciTemplateRequest, PciTemplateResponse } from './pci.types'; export type QueryKeyPciTemplate = ['pciTemplate', PciTemplateRequest]; export declare const usePciTemplate: (data: PciTemplateRequest, options?: QueryOptions<PciTemplateResponse>) => import("@tanstack/preact-query").UseQueryResult<Required<{ content?: string; language?: string; pciTemplateReferences?: string[]; }>, Error>;