import React from 'react';
interface AppContextProviderProps {
    pkg: string;
    children: React.ReactNode | React.ReactNode[];
}
/**
 * Provide all the base providers of an app (e.g. i18n)
 * @param pkg - The app key of the module
 * @param children -
 */
export declare const AppContextProvider: ({ pkg, children }: AppContextProviderProps) => React.JSX.Element;
export {};
