import React from 'react';
export interface Props {
    children: React.ReactNode;
}
declare const I18nWrapper: ({ children }: Props) => JSX.Element;
export default I18nWrapper;
