import { AppContext, AppProps } from 'next/app'; import { ComponentType } from 'react'; import { Locale } from '../types'; export declare const withLocales: (WrappedApp: ComponentType) => { (props: AppProps<{ nextLocales: Locale[]; nextDefaultLocale: string; }>): JSX.Element; getInitialProps(appContext: AppContext): Promise; };