@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.
11 lines (10 loc) • 313 B
TypeScript
import type { Translations } from '../../types';
interface LoadedTranslationsState {
translations: Translations;
locale: string;
}
export declare const useTranslations: ({ locale, allowedLocales, }: {
locale: string;
allowedLocales: string[] | undefined;
}) => LoadedTranslationsState;
export {};