@rainbow-me/rainbowkit
Version:
The best way to connect a wallet
12 lines (11 loc) • 363 B
TypeScript
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) => React.JSX.Element;
export {};