///
import '../style.css';
import { AppContextProps, UiTheme } from '../components';
interface Props extends Omit {
theme?: UiTheme;
translate?: AppContextProps['translate'];
}
export declare function Context({ children, linkComponent, translate: explicitTranslate, theme: explicitTheme, }: Props): JSX.Element;
export {};