import React, { FC, PropsWithChildren } from 'react'; import { I18nextLng } from '../i18n'; import { ColorPrimary, Theme } from '../theme'; export type ArexCoreProviderProps = { theme: Theme; compact: boolean; colorPrimary: ColorPrimary; language: I18nextLng; localeResources?: Record; }; export declare const ArexCoreContext: React.Context; declare const ArexCoreProvider: FC>>; export default ArexCoreProvider;