UNPKG

@kryptogo/kryptogokit-sdk-react

Version:

KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.

12 lines (11 loc) 385 B
import React, { type ReactNode } from 'react'; import { type Locale, i18n } from '../../locales'; export declare const I18nContext: React.Context<{ i18n: typeof i18n; }>; interface I18nProviderProps { children: ReactNode; locale?: Locale; } export declare const I18nProvider: ({ children, locale }: I18nProviderProps) => import("react/jsx-runtime").JSX.Element; export {};