import React, { PropsWithChildren } from 'react'; type Props = PropsWithChildren<{ language?: string; }>; export declare const I18nProvider: ({ language, children }: Props) => React.JSX.Element; export {};