import React from 'react'; import { i18n, TFunction } from 'i18next'; import { NextRouter } from 'next/router'; import { WithTranslation } from 'react-i18next'; import type { AppProps } from '@digigov/ui/app/App'; export interface DigiGOVNextAppProps extends AppProps, WithTranslation { children?: React.ReactNode; t: TFunction; i18n: i18n; ssr: boolean; router: NextRouter; } declare const DigiGOVNextApp: (props: any) => React.JSX.Element; export default DigiGOVNextApp;